diff options
author | tv <tv@krebsco.de> | 2016-06-10 13:54:50 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-06-10 16:04:55 +0200 |
commit | 86a732e61aa6471f28774f4f42af9cb179e33a78 (patch) | |
tree | 20cbae170089aba28fb8b620bc57e130f070b4fb /tv | |
parent | d32b7f9708c517eed050967d4009b94691755031 (diff) |
tv vim: match TODO everywhere
Diffstat (limited to 'tv')
-rw-r--r-- | tv/2configs/vim.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tv/2configs/vim.nix b/tv/2configs/vim.nix index 480d93e35..7da78b4ee 100644 --- a/tv/2configs/vim.nix +++ b/tv/2configs/vim.nix @@ -158,8 +158,9 @@ let colorscheme hack syntax on - au Syntax * syn match TabStop containedin=ALL /\t\+/ - \ | syn match Garbage containedin=ALL /\s\+$/ + au Syntax * syn match Garbage containedin=ALL /\s\+$/ + \ | syn match TabStop containedin=ALL /\t\+/ + \ | syn keyword Todo containedin=ALL TODO au BufRead,BufNewFile *.hs so ${hs.vim} |