about summary refs log tree commit diff
path: root/nix/hosts/caladan/nvim_plugins.nix
blob: 2bc46d73175e4d2fce495c1d9b5c2ebb0b53ce9a (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
{ vimUtils, fetchgit, ... }:

let
  build-vim = vimUtils.buildVimPluginFrom2Nix;

  build = ({name, owner, rev, sha256}: build-vim {
    name = name;
    src = fetchgit {
      url = "https://github.com/${owner}/${name}";
      rev = rev;
      sha256 = sha256;
    };
    dependencies = [];
  });
in {
  lisp = {
    vlime = build {
      name = "vlime";
      owner = "l04m33";
      rev = "065b95f3ac7a455314c2bdefeb2b792f290034df";
      sha256 = "1bmmskdwvbl6lvbnjp9lls86rz0vzmk73y644bjb9ix9ygmjbia4";
    };
  };
}