diff options
-rw-r--r-- | init.vim | 12 |
1 files changed, 3 insertions, 9 deletions
@@ -157,15 +157,9 @@ if has('rneovim') hi MyRedColorColumn guifg=#5a1a1a guibg=none gui=None endfunction call HighlightColorColumns() - " This is my patched version of neovim. - if has('fancycolorcol') - " Grey color column right after text width is grey and in the background and - " a red one after the text width which is red and in the foreground. - set colorcolumn=+1/│/MyColorColumn/b,+20/│/MyRedColorColumn/f - else - hi! link ColorColumn MyColorColumn - set fillchars+=colorcol:│ - endif + " Grey color column right after text width is grey and in the background and + " a red one after the text width which is red and in the foreground. + set colorcolumn=+1/│/MyColorColumn/b,+20/│/MyRedColorColumn/f augroup InitVim au ColorScheme * call HighlightColorColumns() |