aboutsummaryrefslogtreecommitdiff
path: root/vimrc-full
diff options
context:
space:
mode:
authorMax Christian Pohle2017-11-04 17:37:14 +0100
committerMax Christian Pohle2017-11-04 17:37:14 +0100
commit23d6ff00522ba64eb54c60649b89f9043948ddbe (patch)
tree0cf5768106ff843f6fc14f9af6d6bbd8272dbf1d /vimrc-full
parentfc5156e5867877ecb576ba2e0219f050e6c54d6c (diff)
downloadvim-23d6ff00522ba64eb54c60649b89f9043948ddbe.tar.bz2
vim-23d6ff00522ba64eb54c60649b89f9043948ddbe.zip
Improved base16 colorscheme integration
Diffstat (limited to 'vimrc-full')
-rw-r--r--vimrc-full12
1 files changed, 5 insertions, 7 deletions
diff --git a/vimrc-full b/vimrc-full
index d197acc..6b26e61 100644
--- a/vimrc-full
+++ b/vimrc-full
@@ -1022,14 +1022,12 @@ autocmd! ColorScheme * call ExtendColorTheme()
1022 1022
1023 1023
1024set termguicolors | " When on, uses highlight-guifg and highlight-guibg attributes in the terminal (=24bit color) incomp. with nvim 1024set termguicolors | " When on, uses highlight-guifg and highlight-guibg attributes in the terminal (=24bit color) incomp. with nvim
1025" set background=dark 1025" set t_ut=
1026set t_ut=
1027if filereadable(expand("~/.config/base16-shell/colortest"))
1028 let g:base16_shell_path="~/.config/base16-shell/scripts"
1029endif
1030 1026
1031let base16colorspace=256 1027if filereadable(expand("~/.vimrc_background")) && filereadable(expand("~/.config/base16-shell/colortest"))
1032if filereadable(expand("~/.vimrc_background")) 1028 let g:base16_shell_path="~/.config/base16-shell/scripts"
1029 let base16colorspace=256
1030 set background=dark
1033 source ~/.vimrc_background 1031 source ~/.vimrc_background
1034else 1032else
1035 let g:PaperColor_Theme_Options = { 1033 let g:PaperColor_Theme_Options = {
..