diff options
author | tv <tv@krebsco.de> | 2016-05-25 00:39:17 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-05-25 00:46:59 +0200 |
commit | bd64bc1eb05cc95a32165288481d9ff9be4f33c8 (patch) | |
tree | c4d025316202fd58e70d22a2c7a0e6db88896a7f /tv/2configs | |
parent | 37ee40759f1e6feda51fb36dd3c951b4f3045944 (diff) |
tv nix.vim: admit Haskell comments
Diffstat (limited to 'tv/2configs')
-rw-r--r-- | tv/2configs/vim.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tv/2configs/vim.nix b/tv/2configs/vim.nix index 6e2059484..6eefca307 100644 --- a/tv/2configs/vim.nix +++ b/tv/2configs/vim.nix @@ -111,6 +111,10 @@ let syn match String /"\([^\\"]\|\\.\)*"/ syn match Comment /\(^\|\s\)#.*/ + " Haskell comments + syn region Comment start=/\(^\|\s\){-#/ end=/#-}/ + syn match Comment /\(^\|\s\)--.*/ + let b:current_syntax = "nix" ''} |