diff options
author | tv <tv@krebsco.de> | 2019-02-16 19:29:25 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2019-02-16 19:29:25 +0100 |
commit | cfb756c7b10408d1de5dfc5c4eb7742b10ee4f55 (patch) | |
tree | 2e3a57373740e6a55469458fe4c1374d3a1e54e2 /tv/2configs/vim.nix | |
parent | 8791713f205c99121b083d2f495114baed29c1ee (diff) |
tv vim: add todoComment
Diffstat (limited to 'tv/2configs/vim.nix')
-rw-r--r-- | tv/2configs/vim.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tv/2configs/vim.nix b/tv/2configs/vim.nix index 9942ff65b..20e1d650f 100644 --- a/tv/2configs/vim.nix +++ b/tv/2configs/vim.nix @@ -151,7 +151,7 @@ let { setlocal foldmethod=syntax ''; "/syntax/todo.vim".text = '' - syn match Comment /#.*/ + syn match todoComment /#.*/ syn match todoDate /^[1-9]\S*/ \ nextgroup=todoSummary @@ -173,6 +173,7 @@ let { syn sync minlines=1000 + hi link todoComment Comment hi todoDate ctermfg=255 hi todoSummary ctermfg=229 hi todoBlock ctermfg=248 |