diff options
author | tv <tv@krebsco.de> | 2016-06-09 14:15:46 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-06-10 16:04:55 +0200 |
commit | 0987b27d6ae07abbf049384fa2a084568536b51a (patch) | |
tree | c598e5bee55d140af44c4cda0afaaec4e5a0eed2 /tv/2configs | |
parent | 4e7a17e4c4cdda6eab2a0991b94b4c72ec809ed8 (diff) |
tv vim: {TrailingSpace,Tabstop} -> {Garbage,TabStop}
Diffstat (limited to 'tv/2configs')
-rw-r--r-- | tv/2configs/vim.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tv/2configs/vim.nix b/tv/2configs/vim.nix index 0eb67fc..b20149b 100644 --- a/tv/2configs/vim.nix +++ b/tv/2configs/vim.nix @@ -40,8 +40,8 @@ let hi Normal ctermbg=235 hi Comment ctermfg=240 - hi Tabstop ctermbg=16 - hi TrailingSpace ctermbg=88 + hi Garbage ctermbg=088 + hi TabStop ctermbg=016 ''; }))) ((rtp: rtp // { inherit rtp; }) (pkgs.writeTextFile (let @@ -116,8 +116,8 @@ let colorscheme hack syntax on - au Syntax * syn match Tabstop containedin=ALL /\t\+/ - \ | syn match TrailingSpace containedin=ALL /\s\+$/ + au Syntax * syn match TabStop containedin=ALL /\t\+/ + \ | syn match Garbage containedin=ALL /\s\+$/ au BufRead,BufNewFile *.hs so ${hs.vim} |