diff options
author | tv <tv@krebsco.de> | 2019-05-21 21:56:25 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2019-05-21 22:03:00 +0200 |
commit | 52a58bc149146140413e5299609759a589681e8a (patch) | |
tree | f3899d9951873b11e7ef3bd607dbc33405efc7f7 /tv/2configs | |
parent | 1add863e63ae834bf6f728d5827ccdaabcec0584 (diff) |
tv vim: move vim to overlay
Diffstat (limited to 'tv/2configs')
-rw-r--r-- | tv/2configs/vim.nix | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/tv/2configs/vim.nix b/tv/2configs/vim.nix index 7419eb6..18b6931 100644 --- a/tv/2configs/vim.nix +++ b/tv/2configs/vim.nix @@ -19,22 +19,10 @@ let { pkgs.tv.vimPlugins.fzf pkgs.tv.vimPlugins.hack pkgs.tv.vimPlugins.jq + pkgs.tv.vimPlugins.vim pkgs.vimPlugins.fzfWrapper pkgs.vimPlugins.undotree ((rtp: rtp // { inherit rtp; }) (pkgs.writeTextFile (let - name = "vim"; - in { - name = "vim-syntax-${name}-1.0.0"; - destination = "/syntax/${name}.vim"; - text = /* vim */ '' - ${concatMapStringsSep "\n" (s: /* vim */ '' - syn keyword vimColor${s} ${s} - \ containedin=ALLBUT,vimComment,vimLineComment - hi vimColor${s} ctermfg=${s} - '') (map (i: lpad 3 "0" (toString i)) (range 0 255))} - ''; - }))) - ((rtp: rtp // { inherit rtp; }) (pkgs.writeTextFile (let name = "showsyntax"; in { name = "vim-plugin-${name}-1.0.0"; |