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")
"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

View file

@ -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+=.