mirror of
https://github.com/freitass/todo.txt-vim.git
synced 2025-11-08 09:53:48 -05:00
13 lines
458 B
VimL
13 lines
458 B
VimL
" File: todo.txt.vim
|
|
" Description: Todo.txt filetype detection
|
|
" Author: Leandro Freitas <freitass@gmail.com>
|
|
" License: Vim license
|
|
" Website: http://github.com/freitass/todo.txt-vim
|
|
" Version: 0.1
|
|
|
|
autocmd BufNewFile,BufRead [Tt]odo.txt set filetype=todo
|
|
autocmd BufNewFile,BufRead *.[Tt]odo.txt set filetype=todo
|
|
autocmd BufNewFile,BufRead [Dd]one.txt set filetype=todo
|
|
autocmd BufNewFile,BufRead *.[Dd]one.txt set filetype=todo
|
|
|