diff --git a/vim/colors/darkcloud.vim b/vim/colors/darkcloud.vim index 8c82ace..f331eb2 100644 --- a/vim/colors/darkcloud.vim +++ b/vim/colors/darkcloud.vim @@ -448,11 +448,6 @@ hi! link rubyClass Type hi! link rubyIdentifier Identifier hi! link rubyPredefinedIdentifier PreProc call s:X("rubyGlobalVariable","","","bold","","") -"call s:X("rubySymbol","","","","","") -"call s:X("rubyControl","","","","","") -"call s:X("rubyRegexpDelimiter","","","","","") -"call s:X("rubyRegexp","","","","","") -"call s:X("rubyRegexpSpecial","","","","","") "lua hi! link luaOperator Conditional @@ -521,6 +516,14 @@ hi! link quicktaskSection Todo call s:X("quicktaskTimeNote","#ffd787","","bold","Yellow","") call s:X("quicktaskTask","#ffffff","","bold","White","") +"taskwarrior +call s:X("taskwarrior_tablehead","#d0d0d0","","standout,bold",s:termBlack,"White") +call s:X("taskwarrior_field","","","standout,bold","","") +hi! link taskwarrior_id Comment +hi! link taskwarrior_project Keyword +hi! link taskwarrior_entry Identifier +hi! link taskwarrior_description String + "taglist hi! link TagListFileName Directory diff --git a/vim/config/after.vim b/vim/config/after.vim index 5c7fe90..c0eb491 100644 --- a/vim/config/after.vim +++ b/vim/config/after.vim @@ -33,12 +33,12 @@ endif autocmd BufEnter,BufRead PKGBUILD setlocal iskeyword-=. "filtype specific settings - autocmd FileType gitcommit,notes,mail,notmuch,mkd,text setlocal nonumber spell nolist wrap linebreak breakat&vim "some defautls for word processing + autocmd FileType gitcommit,notes,mail,notmuch,mkd,text,taskreport setlocal nonumber spell nolist wrap linebreak breakat&vim "some defautls for word processing autocmd Filetype mkd setlocal breakat-=* "prevent breaking *s from words to linewrap in markdown autocmd FileType help* wincmd L "help windows always open vertically autocmd FileType help* vertical resize 80 "set the window size to 80 cols autocmd FileType help* setlocal nocursorline "remove the horizontal cursor line - autocmd BufEnter,FileType qf,help* setlocal nowrap nocursorcolumn "disable text wrapping and the vertical cursor line + autocmd BufEnter,FileType taskreport,qf,help* setlocal nowrap nocursorcolumn "disable text wrapping and the vertical cursor line autocmd BufEnter,FileType extradite setlocal number "enable line numbers in extradite "settings for buffers in diff mode