aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim/init/highlight.vim
blob: 01f74b800a6426d1385537777111ccef10f9086c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
" 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