aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 = {
..