aboutsummaryrefslogtreecommitdiff
path: root/plugin/max-fix-colorschemes.vim
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/max-fix-colorschemes.vim')
-rw-r--r--plugin/max-fix-colorschemes.vim8
1 files changed, 5 insertions, 3 deletions
diff --git a/plugin/max-fix-colorschemes.vim b/plugin/max-fix-colorschemes.vim
index 87c9efe..7dda5bf 100644
--- a/plugin/max-fix-colorschemes.vim
+++ b/plugin/max-fix-colorschemes.vim
@@ -11,7 +11,8 @@ function! ExtendColorTheme()
11 highlight! Error cterm=NONE ctermbg=NONE gui=NONE guibg=NONE 11 highlight! Error cterm=NONE ctermbg=NONE gui=NONE guibg=NONE
12 highlight! SpellBad cterm=NONE gui=undercurl guibg=NONE guifg=red 12 highlight! SpellBad cterm=NONE gui=undercurl guibg=NONE guifg=red
13 highlight! Ignore cterm=NONE ctermbg=NONE ctermfg=NONE gui=NONE guibg=NONE guifg=NONE 13 highlight! Ignore cterm=NONE ctermbg=NONE ctermfg=NONE gui=NONE guibg=NONE guifg=NONE
14 highlight! Folded cterm=NONE ctermbg=NONE 14 highlight! LineNr cterm=bold,italic,inverse ctermbg=NONE ctermfg=fg
15 " highlight! VertSplit ctermbg=252 ctermfg=252
15 16
16 17
17 18
@@ -37,6 +38,7 @@ function! ExtendColorTheme()
37 highlight! link VertSplit LineNr 38 highlight! link VertSplit LineNr
38 highlight! link SignColumn LineNr 39 highlight! link SignColumn LineNr
39 highlight! link FoldColumn LineNr 40 highlight! link FoldColumn LineNr
41 highlight! link Folded LineNr
40 42
41 highlight! link PmenuSbar Pmenu 43 highlight! link PmenuSbar Pmenu
42 highlight! PmenuThumb cterm=inverse 44 highlight! PmenuThumb cterm=inverse
@@ -48,7 +50,7 @@ endfunction
48autocmd ColorScheme * call ExtendColorTheme() 50autocmd ColorScheme * call ExtendColorTheme()
49 51
50 52
51set background=dark 53" set background=light
52if filereadable(expand("~/.vimrc_background")) && filereadable(expand("~/.config/base16-shell/colortest")) 54if filereadable(expand("~/.vimrc_background")) && filereadable(expand("~/.config/base16-shell/colortest"))
53 let g:base16_shell_path = "~/.config/base16-shell/scripts" 55 let g:base16_shell_path = "~/.config/base16-shell/scripts"
54 let base16colorspace = 256 56 let base16colorspace = 256
@@ -57,7 +59,7 @@ else
57 let g:PaperColor_Theme_Options = { 59 let g:PaperColor_Theme_Options = {
58 \ 'theme': { 60 \ 'theme': {
59 \ 'default': { 61 \ 'default': {
60 \ 'transparent_background': 1 62 \ 'transparent_background': 0
61 \ } 63 \ }
62 \ } 64 \ }
63 \ } 65 \ }
..