neovim: enable autoconfigure by default

It was disabled before. You can still disable by using neovim.overrideAttrs({  autoconfigure = false; }). See the documentation at
https://nixos.org/manual/nixpkgs/unstable/#neovim-custom-configuration
This commit is contained in:
Matthieu C.
2025-01-19 13:33:14 +01:00
parent 5e2aac6af7
commit c4aa5081f9
+1 -1
View File
@@ -23,7 +23,7 @@ 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