From c4aa5081f908f20263503c25a8d4d253f3239a67 Mon Sep 17 00:00:00 2001 From: "Matthieu C." <886074+teto@users.noreply.github.com> Date: Fri, 17 Jan 2025 23:00:43 +0100 Subject: [PATCH] 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 --- pkgs/applications/editors/neovim/wrapper.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/neovim/wrapper.nix b/pkgs/applications/editors/neovim/wrapper.nix index f8e5fc9ad1fd..4248f01ee800 100644 --- a/pkgs/applications/editors/neovim/wrapper.nix +++ b/pkgs/applications/editors/neovim/wrapper.nix @@ -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