about summary refs log tree commit diff
path: root/nix/hosts/caladan
diff options
context:
space:
mode:
authorEmile <git@emile.space>2025-04-11 19:33:01 +0200
committerEmile <git@emile.space>2025-04-11 19:33:01 +0200
commit71fdec27b3492f2e517665f83659c5ba28a1c9bd (patch)
tree7aa389358ad9e7c74a5d6623207dbe06735f46af /nix/hosts/caladan
parent74a2879283c3b3706f2e351377c41563a00af110 (diff)
forgot to commit for a while...
Diffstat (limited to 'nix/hosts/caladan')
-rw-r--r--nix/hosts/caladan/nvim_plugins.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/nix/hosts/caladan/nvim_plugins.nix b/nix/hosts/caladan/nvim_plugins.nix
new file mode 100644
index 0000000..2bc46d7
--- /dev/null
+++ b/nix/hosts/caladan/nvim_plugins.nix
@@ -0,0 +1,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";
+    };
+  };
+}