dotfiles

<-- duh.
Log | Files | Refs | LICENSE

commit 4a6ccbbab557a5d25ee7c9acb4f853cf29bec707
parent 16eec0c56a4177285b447454e323af2c45e196af
Author: hhvn <dev@hhvn.uk>
Date:   Sun, 20 Jun 2021 20:07:15 +0100

.c/n/s/todo.vim: missing ^ for todoBullet

Diffstat:
M.config/nvim/syntax/todo.vim | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.config/nvim/syntax/todo.vim b/.config/nvim/syntax/todo.vim @@ -10,7 +10,7 @@ syn match todoItemPrepared '\.' contained syn match todoCategory '^#.*' contains=todoCategoryContent,todoCategoryDelim syn match todoCategoryDelim '[#]*' contained syn match todoCategoryContent '[^#]*' contained -syn match todoBullet '\s*[-+*]' +syn match todoBullet '^\s*[-+*]' hi link todoItem Operator hi todoItemDone ctermfg=46 cterm=bold guifg=#00aa00 gui=bold