about summary refs log tree commit diff
path: root/users/glittershark/system/home/modules/vim.nix
blob: 87d4309333ddcce4f809eaca84ad04d146cb0f37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ config, pkgs, ... }:
{
  programs.neovim = {
    enable = true;
    viAlias = true;
    vimAlias = true;
    plugins = with pkgs.vimPlugins; [
      ctrlp
      deoplete-nvim
      syntastic
      vim-abolish
      vim-airline
      vim-airline-themes
      vim-bufferline
      vim-closetag
      # vim-colors-solarized
      # solarized
      (pkgs.vimUtils.buildVimPlugin {
        name = "vim-colors-solarized";
        src = pkgs.fetchFromGitHub {
          owner = "glittershark";
          repo = "vim-colors-solarized";
          rev = "4857c3221ec3f2693a45855154cb61a2cefb514d";
          sha256 = "0kqp5w14g7adaiinmixm7z3x4w74lv1lcgbqjbirx760f0wivf9y";
        };
      })
      vim-commentary
      vim-dispatch
      vim-endwise
      vim-repeat
      vim-fugitive
      vim-markdown
      vim-nix
      vim-rhubarb
      vim-sexp
      vim-sexp-mappings-for-regular-people
      vim-sleuth
      vim-startify
      vim-surround
      vim-unimpaired
      vinegar
    ];
    extraConfig = ''
      source ${./vimrc}
    '';
  };
}