aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim/init/highlight.vim
blob: 1deb131b77d9d6261777fef330673ca3f8615d97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
" highlight MatchParen ctermfg=NONE ctermbg=darkgrey cterm=NONE
hi LuaParen ctermfg=NONE ctermbg=darkgrey cterm=NONE

" Show trailing spaces
if has('nvim')
  match ExtraWhitespace /\s\+$/
endif
hi ExtraWhitespace ctermbg=red guibg=red

hi CursorLine guibg=NONE
" Only works when :set cursorline in neovim
hi CursorLineNr term=bold cterm=bold ctermfg=226 gui=bold guifg=#eeee00

hi Folded guifg=#848089 guibg=#37343a ctermfg=lightblue ctermbg=black

hi NonText guifg=black guibg=white ctermfg=black ctermbg=white