mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-23 20:14:11 -05:00
Compare commits
4 commits
facbd15523
...
f7af167d36
Author | SHA1 | Date | |
---|---|---|---|
|
f7af167d36 | ||
|
13fbc4229f | ||
|
67c36df626 | ||
|
abd1ba7992 |
2 changed files with 10 additions and 4 deletions
|
@ -76,13 +76,13 @@ endfun
|
|||
call s:C("LineNr",g:cGray4,"","bold")
|
||||
|
||||
"selected text
|
||||
call s:C("Visual","",g:cDarkBg,"standout")
|
||||
call s:C("Visual","","","standout")
|
||||
|
||||
"vertical split divider
|
||||
call s:C("VertSplit",g:cGray1,"","")
|
||||
|
||||
"matched parenthesis
|
||||
call s:C("MatchParen",g:cWhite,g:cLightBg,"bold")
|
||||
call s:C("MatchParen","","","underline,bold")
|
||||
|
||||
"whitespace
|
||||
call s:C("ExtraWhiteSpace",g:cDarkRed,g:cDarkBg,"")
|
||||
|
@ -166,6 +166,11 @@ endfun
|
|||
"coffeeScript
|
||||
hi! link coffeeRegExp javaScriptRegexpString
|
||||
|
||||
"css/sass
|
||||
call s:C("cssBraces",g:cBlue,"","")
|
||||
call s:C("sassDefinition",g:cRed,"","bold")
|
||||
call s:C("sassClassChar",g:cYellow,"","bold")
|
||||
|
||||
"dosini
|
||||
hi! link dosiniLabel Function
|
||||
|
||||
|
|
|
@ -39,14 +39,15 @@ autocmd FileChangedRO * nested set noreadonly
|
|||
|
||||
"word processing
|
||||
autocmd Filetype markdown,text,gitcommit,mail setlocal nonumber spell tabstop=2 shiftwidth=2 "defaults
|
||||
autocmd Filetype text,gitcommit,mail setlocal wrap nolist textwidth=80 linebreak breakat&vim breakat-=* breakat-=. breakat-=/ breakat-=? breakat-=, breakat-=: breakat-=; breakat-=! "text wrapping
|
||||
autocmd Filetype text,mail setlocal wrap nolist textwidth=80 linebreak breakat&vim breakat-=* breakat-=. breakat-=/ breakat-=? breakat-=, breakat-=: breakat-=; breakat-=! "text wrapping
|
||||
autocmd Filetype gitcommit setlocal textwidth=0
|
||||
|
||||
"comment string
|
||||
autocmd FileType tmux setlocal commentstring=#\ %s
|
||||
|
||||
"iskeyword
|
||||
autocmd BufEnter,FileType sh setlocal iskeyword-=.
|
||||
autocmd FileType scss setlocal iskeyword+=$
|
||||
autocmd FileType scss setlocal iskeyword+=$ iskeyword+=-
|
||||
autocmd Filetype markdown setlocal iskeyword+=-
|
||||
autocmd FileType javascript setlocal iskeyword+=- iskeyword+=.
|
||||
|
||||
|
|
Loading…
Reference in a new issue