diff options
| author | Max Christian Pohle | 2018-10-29 18:02:40 +0100 |
|---|---|---|
| committer | Max Christian Pohle | 2018-10-29 18:02:40 +0100 |
| commit | eb2e7959987ebc405c7a03060f259655e13f01d0 (patch) | |
| tree | 773e2b638c135fb9861567585f4ce82db252df98 /plugin | |
| parent | 6284983fedcbdc54874d6e657047994b292be480 (diff) | |
| download | vim-karlmarks-eb2e7959987ebc405c7a03060f259655e13f01d0.tar.bz2 vim-karlmarks-eb2e7959987ebc405c7a03060f259655e13f01d0.zip | |
Further cleaning finally done
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 ac2af76..1624565 100644 --- a/plugin/max-fix-colorschemes.vim +++ b/plugin/max-fix-colorschemes.vim | |||
| @@ -8,16 +8,20 @@ function! ExtendColorTheme() | |||
| 8 | highlight! BoldUnderline cterm=bold,underline gui=bold,underline | 8 | highlight! BoldUnderline cterm=bold,underline gui=bold,underline |
| 9 | highlight! BoldItalic cterm=bold,Italic gui=Bold,Italic | 9 | highlight! BoldItalic cterm=bold,Italic gui=Bold,Italic |
| 10 | highlight! Todo cterm=bold gui=bold guibg=#ffffaa guifg=#000000 | 10 | highlight! Todo cterm=bold gui=bold guibg=#ffffaa guifg=#000000 |
| 11 | highlight! Error ctermbg=NONE guibg=NONE | 11 | highlight! Error 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 | 13 | ||
| 14 | 14 | ||
| 15 | highlight! link qfSeparator Normal | " reserve one space | ||
| 16 | highlight! link qfLineNr Normal | " informational line numbers should look different | ||
| 17 | |||
| 15 | highlight! link SpecialKey NonText | " makes tab stop (see listchars) less disturbing | 18 | highlight! link SpecialKey NonText | " makes tab stop (see listchars) less disturbing |
| 16 | highlight! link EndOfBuffer Ignore | 19 | highlight! link EndOfBuffer Ignore |
| 17 | highlight! link WildMenu Search | 20 | highlight! link WildMenu Search |
| 18 | highlight! link Convention Error | 21 | highlight! link Convention Error |
| 19 | highlight! link VertSplit NonText | 22 | highlight! link VertSplit NonText |
| 20 | 23 | ||
| 24 | highlight! link VertSplit LineNr | ||
| 21 | highlight! link Folded LineNr | 25 | highlight! link Folded LineNr |
| 22 | highlight! link SignColumn LineNr | 26 | highlight! link SignColumn LineNr |
| 23 | highlight! link FoldColumn LineNr | 27 | highlight! link FoldColumn LineNr |
| @@ -26,7 +30,6 @@ function! ExtendColorTheme() | |||
| 26 | highlight! PmenuThumb cterm=inverse | 30 | highlight! PmenuThumb cterm=inverse |
| 27 | highlight! MoreMsg cterm=inverse | 31 | highlight! MoreMsg cterm=inverse |
| 28 | 32 | ||
| 29 | |||
| 30 | endfunction | 33 | endfunction |
| 31 | autocmd ColorScheme * call ExtendColorTheme() | 34 | autocmd ColorScheme * call ExtendColorTheme() |
| 32 | 35 | ||
