We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ba246a commit 31d10c1Copy full SHA for 31d10c1
pkgs/applications/editors/vim/plugins/utils/vim-utils.nix
@@ -216,6 +216,14 @@ let
216
ln -s ${python3Env}/${python3Env.sitePackages} $out/pack/${packageName}/start/__python3_dependencies/python3
217
'';
218
in
219
+
220
+ assert
221
+ (
222
+ builtins.elem vimPlugins.nvim-treesitter (opt ++ allPlugins)
223
+ && builtins.elem vimPlugins.nvim-treesitter-legacy (opt ++ allPlugins)
224
+ )
225
+ -> throw "You cannot include two different versions of nvim-treesitter, perhaps you included a legacy plugin together with a new one?";
226
227
[
228
packdirStart
229
packdirOpt
0 commit comments