about summary refs log tree commit diff
path: root/nix/hosts/caladan/nvim_plugins.nix
blob: 7f07816729e845a0cda66ae7ee282d88bcdb41f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ vimUtils, fetchgit, ... }:

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