Ver código fonte

nixpkgs/neovim: remove all nixpkgs vim plugins

Thomas Dy 1 ano atrás
pai
commit
d47914602c

+ 5 - 11
.config/nixpkgs/neovim/neovim.nix

@@ -10,7 +10,6 @@
 , ripgrep
 , html-tidy
 , node-lsp
-, vimPlugins
 , fetchFromGitHub
 , fetchpatch
 , withPlayground ? false
@@ -61,14 +60,6 @@ let
     tsc
   ];
 
-  nixpkgsPlugins =
-    (lib.optionals withPlayground [
-      vimPlugins.playground
-    ])
-    ++ (lib.optionals withLuadev [
-      vimPlugins.nvim-luadev
-    ]);
-
   pinnedPlugins = import ./plugins {
     inherit buildNeovimPlugin fetchFromGitHub fetchpatch;
   };
@@ -77,11 +68,14 @@ let
     inherit lib runCommand fetchFromGitHub tree-sitter;
   };
 
-  plugins = (lib.attrValues pinnedPlugins)
+  plugins = (builtins.filter (p: !p.optional) (lib.attrValues pinnedPlugins))
     ++ (lib.attrValues treesitterPlugins)
-    ++ nixpkgsPlugins
     ++ [
       extra-treesitter-textobjects
+    ] ++ lib.optionals withPlayground [
+      pinnedPlugins."nvim-treesitter/playground"
+    ] ++ lib.optionals withLuadev [
+      pinnedPlugins."bfredl/nvim-luadev"
     ];
 
   generic = { initText ? "", enabledPlugins ? [], passthru ? {} }: stdenv.mkDerivation {

+ 4 - 0
.config/nixpkgs/neovim/plugins/default.nix

@@ -33,6 +33,10 @@ let
         inherit (spec) rev sha256;
       };
 
+      passthru = {
+        optional = spec.optional or false;
+      };
+
       dontBuild = true;
     } // (overrides.${name} or {}));
 in

+ 10 - 0
.config/nixpkgs/neovim/plugins/sources.json

@@ -99,5 +99,15 @@
   "nvim-treesitter/nvim-treesitter": {
     "rev": "572a15f171ce1a69ed91ea642ae77af5b5d295fb",
     "sha256": "1vndcc5bnbb4l68lk0pm6gray1f7jf9vxhpxh71mq2lzzpjah8v3"
+  },
+  "nvim-treesitter/playground": {
+    "optional": true,
+    "rev": "2b81a018a49f8e476341dfcb228b7b808baba68b",
+    "sha256": "1b7h4sih8dc55w12f0v5knk9cxfpy0iffhbvmg0g84if55ar616v"
+  },
+  "bfredl/nvim-luadev": {
+    "optional": true,
+    "rev": "3ba0c02c378503739f1fdb95cff3ea2aad48db3e",
+    "sha256": "0pvb25bdmx4hxs3g7pkdqfjg3qpnr9p5szzbqqwaw3lbdnbyykzy"
   }
 }