11 lines
342 B
VimL
11 lines
342 B
VimL
" File: todo.txt.vim
|
|
" Description: Todo.txt filetype detection
|
|
" Author: Leandro Freitas <freitass@gmail.com>
|
|
" License: Vim license
|
|
" Website: http://github.com/dbeniamine/todo.txt-vim
|
|
" Version: 0.6
|
|
|
|
autocmd BufNewFile,BufRead [Tt]odo.txt set filetype=todo
|
|
autocmd BufNewFile,BufRead [Dd]one.txt set filetype=todo
|
|
|