summaryrefslogtreecommitdiff
path: root/pkgs/vim/plugins.nix
blob: 654f63a0a6b0ca1478e0c2bf5c0daad7d8a033de (plain)
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
48
49
50
{ pkgs, fetchgit }:

let
  buildVimPlugin = pkgs.vimUtils.buildVimPluginFrom2Nix;
in {
  "vim-unimpaired" = buildVimPlugin {
    name = "vim-unimpaired";
    src  = fetchgit {
      url    = "https://github.com/tpope/vim-unimpaired";
      rev    = "bacf1543cc957d47aa70c1dc0bcf99392925b008";
      sha256 = "0jx9xybjswnaa6v7hhfqm2nyd5v54xjd02ikw56wm7h6sfgchllx";
    };
  };
  "vim-counterpoint" = buildVimPlugin {
    name = "vim-counterpoint";
    src  = fetchgit {
      url    = "https://github.com/jpetrie/vim-counterpoint";
      rev    = "93d8fd9d18a378ab3db39411300716129358211c";
      sha256 = "02spr4mhj2035q45j8bf502jgpq76a518nv913zx46byfbl69lps";
    };
  };
  "vim-mundo" = buildVimPlugin {
    name = "vim-mundo";
    src  = fetchgit {
      url    = "https://github.com/simnalamburt/vim-mundo";
      rev    = "v3.0.1";
      sha256 = "052ywnd5r6ksiz1lsyqya9b94fdb0gr7krkdpc1gw1fx11qk5x2v";
    };
  };
  "vim-toggle-ui-elements" = buildVimPlugin {
    name = "vim-toggle-ui-elements";
    src  = fetchgit {
      url    = "https://github.com/muellan/vim-toggle-ui-elements";
      rev    = "325f60fe8030cc2a2312d67191f214c5c39ef283";
      sha256 = "0fl9kvp799l3nzy8lnjcb0y1hr3g1ba8n9v2mx83yaqdma0rvhi1";
    };
  };
  "vim-git-commit-viewer" = buildVimPlugin {
    name = "vim-git-commit-viewer";
    src  = fetchgit {
      url    = "https://github.com/junegunn/gv.vim";
      rev    = "7ee1ca8201a0e9f95ba5dd3ec344e3ce71d61d8e";
      sha256 = "0r0j8l0sm3xgb3hgmf0zm48mgj97nlkspg3jgv817nhwsl8pyc44";
    };
  };
  "vim-color-akr" = buildVimPlugin {
    name = "vim-color-akr";
    src  = ./conf/vim-color-akr;
  };
}