diff --git a/options.xhtml b/options.xhtml index 3f3a9d642..72701ff92 100644 --- a/options.xhtml +++ b/options.xhtml @@ -33742,6 +33742,45 @@ See the example for more info.

Example: pyPkgs: with pyPkgs; [ python-language-server ]

+

Declared by:

+ + +
+ +<home-manager/modules/programs/neovim.nix> + +
+ +
+ + programs.neovim.extraWrapperArgs + + +
+
+

Extra arguments to be passed to the neovim wrapper. +This option sets environment variables required for building and running binaries +with external package managers like mason.nvim.

+ +

Type: +list of string

+ +

Default: +[ ]

+ +

Example:

[
+  "--suffix"
+  "LIBRARY_PATH"
+  ":"
+  "${lib.makeLibraryPath [ pkgs.stdenv.cc.cc pkgs.zlib ]}"
+  "--suffix"
+  "PKG_CONFIG_PATH"
+  ":"
+  "${lib.makeSearchPathOutput "dev" "lib/pkgconfig" [ pkgs.stdenv.cc.cc pkgs.zlib ]}"
+]
+
+
+

Declared by: