mirror of
https://github.com/notwa/rc
synced 2025-02-05 07:43:22 -08:00
messing with vim syntax colors
This commit is contained in:
parent
168aa084a0
commit
589a65612e
2 changed files with 9 additions and 1 deletions
|
@ -405,6 +405,10 @@ augroup DefaultWin
|
||||||
au VimEnter * call DefaultWin()
|
au VimEnter * call DefaultWin()
|
||||||
augroup END
|
augroup END
|
||||||
|
|
||||||
|
" polyglot {{{1
|
||||||
|
|
||||||
|
let c_gnu=1
|
||||||
|
|
||||||
" airline {{{1
|
" airline {{{1
|
||||||
|
|
||||||
if has('gui_running')
|
if has('gui_running')
|
||||||
|
|
|
@ -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("Folded", s:K, s:k) " good
|
||||||
",
|
",
|
||||||
call <SID>X("Error", s:k, s:R)
|
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("ErrorMsg", s:k, s:R)
|
||||||
call <SID>X("TabLineSel", s:k, s:Y) " okay
|
call <SID>X("TabLineSel", s:k, s:Y) " okay
|
||||||
call <SID>X("Visual", s:k, s:C) " 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("Define", s:b, "")
|
||||||
call <SID>X("Include", s:b, "")
|
call <SID>X("Include", s:b, "")
|
||||||
call <SID>X("Typedef", s:b, "")
|
call <SID>X("Typedef", s:b, "")
|
||||||
|
"
|
||||||
|
call <SID>X("Something", s:g, "")
|
||||||
|
|
||||||
" TODO: Vim editor colors
|
" TODO: Vim editor colors
|
||||||
"Conceal"
|
"Conceal"
|
||||||
|
@ -158,6 +160,8 @@ delf <SID>X
|
||||||
"cStorageClass"
|
"cStorageClass"
|
||||||
"cType"
|
"cType"
|
||||||
"cUserLabel"
|
"cUserLabel"
|
||||||
|
" (polyglot)
|
||||||
|
hi link cCustomFunc Something
|
||||||
|
|
||||||
" C++ highlighting
|
" C++ highlighting
|
||||||
"cppExceptions"
|
"cppExceptions"
|
||||||
|
|
Loading…
Add table
Reference in a new issue