1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-18 09:53:22 -07:00

messing with vim syntax colors

This commit is contained in:
Connor Olding 2016-09-19 12:52:05 -07:00
parent 168aa084a0
commit 589a65612e
2 changed files with 9 additions and 1 deletions

View File

@ -405,6 +405,10 @@ augroup DefaultWin
au VimEnter * call DefaultWin()
augroup END
" polyglot {{{1
let c_gnu=1
" airline {{{1
if has('gui_running')

View File

@ -45,7 +45,7 @@ call <SID>X("VertSplit", s:K, s:K) " good
call <SID>X("Folded", s:K, s:k) " good
",
call <SID>X("Error", s:k, s:R)
call <SID>X("Exception", s:R, "") " ???
call <SID>X("Exception", s:y, "") " C++ exceptions, i think
call <SID>X("ErrorMsg", s:k, s:R)
call <SID>X("TabLineSel", s:k, s:Y) " okay
call <SID>X("Visual", s:k, s:C) " okay
@ -93,6 +93,8 @@ call <SID>X("Keyword", s:b, "")
call <SID>X("Define", s:b, "")
call <SID>X("Include", s:b, "")
call <SID>X("Typedef", s:b, "")
"
call <SID>X("Something", s:g, "")
" TODO: Vim editor colors
"Conceal"
@ -158,6 +160,8 @@ delf <SID>X
"cStorageClass"
"cType"
"cUserLabel"
" (polyglot)
hi link cCustomFunc Something
" C++ highlighting
"cppExceptions"