neovim: enable autoconfigure by default (#374653)

This commit is contained in:
Matthieu Coudron
2025-01-19 16:04:07 +01:00
committed by GitHub
2 changed files with 6 additions and 2 deletions
+2 -2
View File
@@ -23,10 +23,10 @@ let
# certain plugins need a custom configuration (available in passthru.initLua)
# to work with nix.
# if true, the wrapper automatically appends those snippets when necessary
, autoconfigure ? false
, autoconfigure ? true
# append to PATH runtime deps of plugins
, autowrapRuntimeDeps ? false
, autowrapRuntimeDeps ? true
# should contain all args but the binary. Can be either a string or list
, wrapperArgs ? []
@@ -57,6 +57,7 @@
tmux,
tup,
typescript,
typescript-language-server,
vim,
which,
xdg-utils,
@@ -3298,6 +3299,9 @@ in
nvim-lspconfig
plenary-nvim
];
runtimeDeps = [
typescript-language-server
];
};
nvzone-typr = super.nvzone-typr.overrideAttrs {