Compare commits

..

4 commits

2 changed files with 10 additions and 4 deletions

View file

@ -76,13 +76,13 @@ endfun
call s:C("LineNr",g:cGray4,"","bold") call s:C("LineNr",g:cGray4,"","bold")
"selected text "selected text
call s:C("Visual","",g:cDarkBg,"standout") call s:C("Visual","","","standout")
"vertical split divider "vertical split divider
call s:C("VertSplit",g:cGray1,"","") call s:C("VertSplit",g:cGray1,"","")
"matched parenthesis "matched parenthesis
call s:C("MatchParen",g:cWhite,g:cLightBg,"bold") call s:C("MatchParen","","","underline,bold")
"whitespace "whitespace
call s:C("ExtraWhiteSpace",g:cDarkRed,g:cDarkBg,"") call s:C("ExtraWhiteSpace",g:cDarkRed,g:cDarkBg,"")
@ -166,6 +166,11 @@ endfun
"coffeeScript "coffeeScript
hi! link coffeeRegExp javaScriptRegexpString 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 "dosini
hi! link dosiniLabel Function hi! link dosiniLabel Function

View file

@ -39,14 +39,15 @@ autocmd FileChangedRO * nested set noreadonly
"word processing "word processing
autocmd Filetype markdown,text,gitcommit,mail setlocal nonumber spell tabstop=2 shiftwidth=2 "defaults 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 "comment string
autocmd FileType tmux setlocal commentstring=#\ %s autocmd FileType tmux setlocal commentstring=#\ %s
"iskeyword "iskeyword
autocmd BufEnter,FileType sh setlocal 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 markdown setlocal iskeyword+=-
autocmd FileType javascript setlocal iskeyword+=- iskeyword+=. autocmd FileType javascript setlocal iskeyword+=- iskeyword+=.