summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/editor/vim.nix
blob: 5751bf48958a91ad5848d3e165b311776789b4bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ config, pkgs, ... }:

{

  environment.systemPackages = [
    ((pkgs.vim_configurable.override { python = pkgs.python3; }).customize {
      name = "vim";
      vimrcConfig.customRC = builtins.readFile ./vimrc;
      vimrcConfig.vam.knownPlugins = pkgs.vimPlugins;
      vimrcConfig.vam.pluginDictionaries = [
        { names = [ "undotree"
        "YouCompleteMe"
        #"UltiSnips"
          "vim-better-whitespace" ]; }
        # vim-nix handles indentation better but does not perform sanity
        { names = [ "vim-addon-nix" ]; ft_regex = "^nix\$"; }
      ];

    })
  ];
}