MyNixOS website logo
option

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.

Declarations
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 ]}"
]