Compare commits

..

No commits in common. "f7af167d361a2c0263f3fd7edaba124985ba5531" and "facbd155231f6ed033ca1aebfa1aca5e1c47664a" have entirely different histories.

2 changed files with 4 additions and 10 deletions

View file

@ -76,13 +76,13 @@ endfun
call s:C("LineNr",g:cGray4,"","bold")
"selected text
call s:C("Visual","","","standout")
call s:C("Visual","",g:cDarkBg,"standout")
"vertical split divider
call s:C("VertSplit",g:cGray1,"","")
"matched parenthesis
call s:C("MatchParen","","","underline,bold")
call s:C("MatchParen",g:cWhite,g:cLightBg,"bold")
"whitespace
call s:C("ExtraWhiteSpace",g:cDarkRed,g:cDarkBg,"")
@ -166,11 +166,6 @@ 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,15 +39,14 @@ autocmd FileChangedRO * nested set noreadonly
"word processing
autocmd Filetype markdown,text,gitcommit,mail setlocal nonumber spell tabstop=2 shiftwidth=2 "defaults
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
autocmd Filetype text,gitcommit,mail setlocal wrap nolist textwidth=80 linebreak breakat&vim breakat-=* breakat-=. breakat-=/ breakat-=? breakat-=, breakat-=: breakat-=; breakat-=! "text wrapping
"comment string
autocmd FileType tmux setlocal commentstring=#\ %s
"iskeyword
autocmd BufEnter,FileType sh setlocal iskeyword-=.
autocmd FileType scss setlocal iskeyword+=$ iskeyword+=-
autocmd FileType scss setlocal iskeyword+=$
autocmd Filetype markdown setlocal iskeyword+=-
autocmd FileType javascript setlocal iskeyword+=- iskeyword+=.