Fix typos (#326)

* fix: typo

* docs: wrong link
This commit is contained in:
Ching Pei Yang 2024-07-10 01:37:07 +02:00 committed by NotAShelf
commit 33a91b3ad4
Signed by: NotAShelf
GPG key ID: AF26552424E53993
2 changed files with 2 additions and 2 deletions

View file

@ -76,7 +76,7 @@ inputs: {
builtStartPlugins = buildConfigPlugins vimOptions.startPlugins; builtStartPlugins = buildConfigPlugins vimOptions.startPlugins;
builtOptPlugins = map (package: { builtOptPlugins = map (package: {
plugin = package; plugin = package;
optional = false; optional = true;
}) (buildConfigPlugins vimOptions.optPlugins); }) (buildConfigPlugins vimOptions.optPlugins);
# additional Lua and Python3 packages, mapped to their respective functions # additional Lua and Python3 packages, mapped to their respective functions

View file

@ -47,7 +47,7 @@ in {
internally to add plugins to Neovim's runtime. internally to add plugins to Neovim's runtime.
To add additional plugins to your configuration, consider To add additional plugins to your configuration, consider
using the [{option}`vim.extraPlugins`](#opt-vim.optPlugins) using the [{option}`vim.extraPlugins`](#opt-vim.extraPlugins)
option. option.
''; '';
}; };