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.vim7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugin/max-fix-colorschemes.vim b/plugin/max-fix-colorschemes.vim
index 1535dc7..b9c7657 100644
--- a/plugin/max-fix-colorschemes.vim
+++ b/plugin/max-fix-colorschemes.vim
@@ -24,8 +24,8 @@ function! ExtendColorTheme()
24 highlight! link Tabline StatusLine 24 highlight! link Tabline StatusLine
25 highlight! link VertSplit LineNr 25 highlight! link VertSplit LineNr
26 highlight! link SignColumn LineNr 26 highlight! link SignColumn LineNr
27 highlight! link FoldColumn LineNr 27 highlight! link FoldColumn VertSplit
28 highlight! link Folded LineNr 28 " highlight! link Folded LineNr
29 highlight! link EndOfBuffer LineNr 29 highlight! link EndOfBuffer LineNr
30endfunction 30endfunction
31autocmd ColorScheme * call ExtendColorTheme() 31autocmd ColorScheme * call ExtendColorTheme()
@@ -45,6 +45,9 @@ else
45 \ 'theme': { 45 \ 'theme': {
46 \ 'default.dark': { 46 \ 'default.dark': {
47 \ 'transparent_background': 1 47 \ 'transparent_background': 1
48 \ },
49 \ 'default.light': {
50 \ 'transparent_background': 1
48 \ } 51 \ }
49 \ } 52 \ }
50 \ } 53 \ }
..