Added settings for the taskwarrior plugin (for those who use it)

This commit is contained in:
Kevin MacMartin 2014-07-16 23:29:44 -04:00
parent 40a59e41c2
commit f7032d5335
2 changed files with 10 additions and 7 deletions

View file

@ -448,11 +448,6 @@ hi! link rubyClass Type
hi! link rubyIdentifier Identifier hi! link rubyIdentifier Identifier
hi! link rubyPredefinedIdentifier PreProc hi! link rubyPredefinedIdentifier PreProc
call s:X("rubyGlobalVariable","","","bold","","") 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 "lua
hi! link luaOperator Conditional hi! link luaOperator Conditional
@ -521,6 +516,14 @@ hi! link quicktaskSection Todo
call s:X("quicktaskTimeNote","#ffd787","","bold","Yellow","") call s:X("quicktaskTimeNote","#ffd787","","bold","Yellow","")
call s:X("quicktaskTask","#ffffff","","bold","White","") 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 "taglist
hi! link TagListFileName Directory hi! link TagListFileName Directory

View file

@ -33,12 +33,12 @@ endif
autocmd BufEnter,BufRead PKGBUILD setlocal iskeyword-=. autocmd BufEnter,BufRead PKGBUILD setlocal iskeyword-=.
"filtype specific settings "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 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* wincmd L "help windows always open vertically
autocmd FileType help* vertical resize 80 "set the window size to 80 cols autocmd FileType help* vertical resize 80 "set the window size to 80 cols
autocmd FileType help* setlocal nocursorline "remove the horizontal cursor line 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 autocmd BufEnter,FileType extradite setlocal number "enable line numbers in extradite
"settings for buffers in diff mode "settings for buffers in diff mode