Open
Description
First of all thanks for the plugin.
When I try to use it via vim-plug as following:
Plug 'aserebryakov/vim-todo-lists', { 'for': 'todo' }
It doesn't seem to work even though I did configure filetype correctly:
autocmd BufRead,BufNewFile *.todo set ft=todo
It does work if I add call VimTodoListsInit
:
autocmd BufRead,BufNewFile *.todo set ft=todo | call VimTodoListsInit()
but I find this solution a bit of a hack.