diff --git a/options.html b/options.html index 8a2fc40..510d364 100644 --- a/options.html +++ b/options.html @@ -164,8 +164,8 @@ package
active runtimepath of the Neovim. This can be used to add additional lookup paths for configs, plugins, spell languages and other things you would generally place in -your$HOME/.config/nvim
.This is meant as a declarative alternative to throwing
-files into ~/.config/nvim
and having the Neovim
+your $HOME/.config/nvim
.
This is meant as a declarative alternative to throwing
+files into ~/.config/nvim
and having the Neovim
wrapper pick them up. For more details on
vim.o.runtimepath
, and what paths to use; please see
the official documentation
To avoid leaking imperative user configuration into your
configuration, this is enabled by default. If you wish
to load configuration from user configuration directories
-(e.g. $HOME/.config/nvim
, $HOME/.config/nvim/after
-and $HOME/.local/share/nvim/site
) you may set this
+(e.g. $HOME/.config/nvim
, $HOME/.config/nvim/after
+and $HOME/.local/share/nvim/site
) you may set this
option to true.
Type: @@ -3120,6 +3120,52 @@ boolean
Example:
false
Declared by:
+
+
+<nvf/modules/wrapper/rc/options.nix>
+
+ |
vim.extraLuaFiles
+
+
+Additional lua files that will be sourced by Neovim.
+Takes both absolute and relative paths, all of which
+will be called via the luafile
command in Neovim.
See lua-commands +on the Neovim documentation for more details.
All paths passed to this option must be valid. If Neovim cannot +resolve the path you are attempting to sourcee, then your configuration +will error, and Neovim will not start. Please ensure that all paths +are correct before using this option.
Type: +list of (path or string)
+ +Default:
+[ ]
Example:
[
+ # absolute path, as a string - impure
+ "$HOME/.config/nvim/my-lua-file.lua"
+
+ # relative path, as a path - pure
+ ./nvim/my-lua-file.lua
+
+ # source type path - pure and reproducible
+ (builtins.source {
+ path = ./nvim/my-lua-file.lua;
+ name = "my-lua-file";
+ })
+]
+
+
+
Declared by:
@@ -8607,7 +8653,7 @@ boolean
package or list of string
Default:
- <derivation dart-3.3.4>
Example:
Default:
- <derivation lua-language-server-3.8.3>
Declared by: |