diff --git a/docs-preview-1062/options.html b/docs-preview-1062/options.html index bb43c85e..93639ea2 100644 --- a/docs-preview-1062/options.html +++ b/docs-preview-1062/options.html @@ -140,15 +140,12 @@ package
Additional runtime paths that will be appended to the
-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
-wrapper pick them up. For more details on
-vim.o.runtimepath
, and what paths to use; please see
-the official documentation
Additional runtime paths that will be appended to the 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 wrapper pick them up.
For more details on vim.o.runtimepath
, and what paths to use, please see
+the official documentation.
Type: list of (absolute path or string)
@@ -157,16 +154,18 @@ list of (absolute path or string)[ ]
Example:
[
- # absolute path, as a string - impure
+ # Absolute path, as a string. This is the impure option.
"$HOME/.config/nvim-extra"
- # relative path, as a path - pure
+ # Relative path inside your configuration. If your config
+ # is version controlled, then this is pure and reproducible.
./nvim
- # source type path - pure and reproducible
- (builtins.source {
- path = ./runtime;
- name = "nvim-runtime";
+ # Source type path. This pure and reproducible.
+ # See `:doc builtins.path` inside a Nix repl for more options.
+ (builtins.path {
+ path = ./runtime; # this must be a relative path
+ name = "nvim-runtime"; # name is arbitrary
})
]
@@ -6120,7 +6119,7 @@ anything
-Whether to enable dashboard via vim-startify.
+Whether to enable fancy start screen for Vim [vim-startify].
Type:
boolean
@@ -6147,7 +6146,7 @@ boolean
-List of book marks to disaply on start page
+List of book marks to display on start page
Type:
list of (attribute set)
@@ -6176,7 +6175,7 @@ list of (attribute set)
-Command to change the current window with. Can be cd, lcd or tcd
+Command to change the current window with.
Type:
one of “cd”, “lcd”, “tcd”
@@ -6200,7 +6199,7 @@ one of “cd”, “lcd”, “tcd”
-Should vim change to the directory of the file you open
+Whether Vim should change to the directory of the file you open
Type:
boolean
@@ -6224,7 +6223,7 @@ boolean
-Should vim change to the version control root when opening a file
+Whether Vim should change to the version control root when opening a file
Type:
boolean
@@ -6344,7 +6343,8 @@ list of string
-Prevent startify from opening on startup but can be called with :Startify
+Whether vim-startify should be disabled on startup.
This will prevent startify from opening on startup, but it can still
+be called with :Startify
Type:
boolean
@@ -6471,7 +6471,7 @@ signed integer
-Make startify auto load Session.vim files from the current directory
+Make vim-startify auto load Session.vim files from the current directory
Type:
boolean
@@ -6663,7 +6663,7 @@ list of string
-Set if you want items sorted by date rather than alphabetically
+While true, sessions will be sorted by date rather than alphabetically.
Type:
boolean
@@ -6671,6 +6671,9 @@ boolean
Default:
false
+Example:
+true
+
Declared by:
@@ -6735,7 +6738,8 @@ list of string
-Turns on unsafe mode for Startify. Stops resolving links, checking files are readable and filtering bookmark list
+Whether to turn on unsafe mode for Startify.
While enabld, vim-startify will stops resolving links, checking files
+are readable and filtering bookmark list
Type:
boolean
@@ -8044,9 +8048,8 @@ attribute set of list of string
-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
+
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.
Warning
All paths passed to this option must be valid. If Neovim cannot
resolve the path you are attempting to source, then your configuration
will error, and Neovim will not start. Please ensure that all paths
@@ -8059,13 +8062,13 @@ list of (absolute path or string)
[ ]
Example:
[
- # absolute path, as a string - impure
+ # Absolute path, as a string - impure
"$HOME/.config/nvim/my-lua-file.lua"
- # relative path, as a path - pure
+ # Relative path, as a path - pure
./nvim/my-lua-file.lua
- # source type path - pure and reproducible
+ # Source type path - pure and reproducible
(builtins.path {
path = ./nvim/my-lua-file.lua;
name = "my-lua-file";