summaryrefslogtreecommitdiff
path: root/pkgs/custom-vim/plugins.nix
blob: 608fcacfa7af17f35824fb296aff61d648678049 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{ 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-far" = buildVimPlugin {
    name = "vim-far";
    src = fetchgit {
      url    = "https://github.com/brooth/far.vim.git";
      rev    = "0382845a87abd89d169a2fd8eb88c5a2241d496c";
      sha256 = "1sk5hz73fglhn7g8p9m2a6gx49l2zndv9hav1zna903adsz8abfp";
    };
  };

  "vim-wordmotion" = buildVimPlugin {
    name = "vim-wordmotion";
    src = fetchgit {
      url    = "https://github.com/chaoren/vim-wordmotion.git";
      rev    = "e0a7bc3a27802803788741802113ff2781235951";
      sha256 = "1k1mlhy9z96wx3l4ijvndm3d9il82qg8xgawck4sc0hr7yxvg4ap";
    };
  };

  "vim-gina" = buildVimPlugin {
    name = "vim-gina";
    src = fetchgit {
      url    = "https://github.com/lambdalisue/gina.vim.git";
      rev    = "v1.0.0";
      sha256 = "0dd8kn54a17qi73namkbdw0gaskddy9krhrzcqp6x9cjinvjyrhv";
    };
  };

  "vim-color-akr" = buildVimPlugin {
    name = "vim-color-akr";
    src  = ./asset/vim-color-akr;
  };

}