diff --git a/index.html b/index.html index 5e22667be..848fd7699 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ -
ca.desrt.dconf
or dconf.service
?+
ca.desrt.dconf
or dconf.service
?This manual will eventually describe how to install, use, and extend Home Manager.
diff --git a/options.html b/options.html index 32d4f6f3c..73b88ced1 100644 --- a/options.html +++ b/options.html @@ -5089,15 +5089,19 @@ for options. set nobackup ''
Declared by:
<home-manager/modules/programs/neovim.nix>
- |
programs.neovim.extraLuaPackages
A function in lua5_1.withPackages format, which returns a -list of Lua packages required for your plugins to work. -
Type: (lua5.1 packages in lua5_1.withPackages format) or list of package
Default: [ ]
Example: (ps: with ps; [ luautf8 ])
Declared by:
+ |
programs.neovim.extraLuaPackages
The extra Lua packages required for your plugins to work. +This option accepts a function that takes a Lua package set as an argument, +and selects the required Lua packages from this package set. +See the example for more info. +
Type: (function that evaluates to a(n) list of package) or (list of package) convertible to it
Default: ps: [ ]
Example: luaPkgs: with luaPkgs; [ luautf8 ]
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.extraPackages
Extra packages available to nvim.
Type: list of package
Default: [ ]
Example: [ pkgs.shfmt ]
Declared by:
<home-manager/modules/programs/neovim.nix>
- |
programs.neovim.extraPython3Packages
A function in python.withPackages format, which returns a -list of Python 3 packages required for your plugins to work. -
Type: (python3 packages in python.withPackages format) or list of package
Default: ps: [ ]
Example: (ps: with ps; [ python-language-server ])
Declared by:
+ |
programs.neovim.extraPython3Packages
The extra Python 3 packages required for your plugins to work. +This option accepts a function that takes a Python 3 package set as an argument, +and selects the required Python 3 packages from this package set. +See the example for more info. +
Type: (function that evaluates to a(n) list of package) or (list of package) convertible to it
Default: ps: [ ]
Example: pyPkgs: with pyPkgs; [ python-language-server ]
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.generatedConfigViml
Generated vimscript config.
Type: strings concatenated with "\n" (read only)
Declared by: