From 46689fa74ac215e6b307a18016566c3165ecc339 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Fri, 26 Jun 2026 20:28:03 -0500 Subject: [PATCH] doc/neovim: correct configuration overrides example Correct configuration overrides example to use neovim.override instead of overrideAttrs. --- doc/languages-frameworks/neovim.section.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/languages-frameworks/neovim.section.md b/doc/languages-frameworks/neovim.section.md index 248281961120..cc16860b1a02 100644 --- a/doc/languages-frameworks/neovim.section.md +++ b/doc/languages-frameworks/neovim.section.md @@ -104,9 +104,9 @@ wrapNeovimUnstable neovim-unwrapped { You can explore the configuration with `nix repl` to discover these options and override them. For instance: ```nix -neovim.overrideAttrs (oldAttrs: { +neovim.override { autowrapRuntimeDeps = false; -}) +} ``` ## Specificities for some plugins {#neovim-plugin-specificities}