diff options
author | Max Christian Pohle | 2020-02-28 14:21:36 +0100 |
---|---|---|
committer | Max Christian Pohle | 2020-02-28 14:21:36 +0100 |
commit | 1806b1b40739894ee18bef2c071487274cbab3b7 (patch) | |
tree | 3c43f810098943d79c35303f068ac00a97faf1e8 /plugin | |
parent | 7ebf9126bcbe10769b2275056fede56736890b59 (diff) | |
download | vim-1806b1b40739894ee18bef2c071487274cbab3b7.tar.bz2 vim-1806b1b40739894ee18bef2c071487274cbab3b7.zip |
Small fixes and adoptions for python[23]
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/max-fix-colorschemes.vim | 7 |
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 |
30 | endfunction | 30 | endfunction |
31 | autocmd ColorScheme * call ExtendColorTheme() | 31 | autocmd 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 | \ } |