mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
22 lines
633 B
VimL
22 lines
633 B
VimL
" Vim support file to detect Taskwarrior data and configuration files and
|
|
" single task edits
|
|
"
|
|
" Maintainer: John Florian <jflorian@doubledog.org>
|
|
" Updated: Thu Dec 10 18:28:26 EST 2009
|
|
"
|
|
" Copyright 2009 - 2011 John Florian
|
|
"
|
|
" This file is available under the MIT license.
|
|
" For the full text of this license, see COPYING.
|
|
|
|
|
|
" Taskwarrior data files
|
|
au BufRead,BufNewFile {pending,completed,undo}.data set filetype=taskdata
|
|
|
|
" Taskwarrior configuration file
|
|
au BufRead,BufNewFile .taskrc set filetype=taskrc
|
|
|
|
" Taskwarrior handling of 'task 42 edit'
|
|
au BufRead,BufNewFile *.task set filetype=taskedit
|
|
|
|
" vim:noexpandtab
|