docs: fix links

This commit is contained in:
Snoweuph 2026-04-15 19:45:14 +02:00
commit 6e31cd0d5e
No known key found for this signature in database
GPG key ID: BEFC41DA223CEC55
5 changed files with 9 additions and 9 deletions

View file

@ -18,8 +18,8 @@ entries in nvf:
6. `lazyConfigs` - `lz.n` and `lzn-auto-require` configs. If `vim.lazy.enable` 6. `lazyConfigs` - `lz.n` and `lzn-auto-require` configs. If `vim.lazy.enable`
is false, this will contain each plugin's config instead. is false, this will contain each plugin's config instead.
7. `pluginConfigs` - the result of the nested `vim.pluginRC` (internal option, 7. `pluginConfigs` - the result of the nested `vim.pluginRC` (internal option,
see the [Custom Plugins](/index.xhtml#ch-custom-plugins) page for adding your see the [Custom Plugins](./configuring.html#ch-custom-plugins) page for
own plugins) DAG, used to set up internal plugins adding your own plugins) DAG, used to set up internal plugins
8. `extraPluginConfigs` - the result of `vim.extraPlugins`, which is not a 8. `extraPluginConfigs` - the result of `vim.extraPlugins`, which is not a
direct DAG, but is converted to, and resolved as one internally direct DAG, but is converted to, and resolved as one internally
9. `mappings` - the result of `vim.maps` 9. `mappings` - the result of `vim.maps`

View file

@ -91,7 +91,7 @@ consistency and to avoid clashing opinions on how formatters should behave, we
are very opinionated on how those files should be formatted. are very opinionated on how those files should be formatted.
- Nix files **must** be formatted with the Alejandra formatter, following some - Nix files **must** be formatted with the Alejandra formatter, following some
specific tips found in [Nix style section](#nix-sec-code-style-nix). specific tips found in [Nix style section](#sec-code-style-nix).
- Markdown files **must** be formatted with the `deno fmt` command, as described - Markdown files **must** be formatted with the `deno fmt` command, as described
in the [Markdown style section](#sec-code-style-markdown). in the [Markdown style section](#sec-code-style-markdown).

View file

@ -10,7 +10,7 @@ In v0.7 we are removing `vim.configRC` in favor of making `vim.luaConfigRC` the
top-level DAG, and thereby making the entire configuration Lua based. This top-level DAG, and thereby making the entire configuration Lua based. This
change introduces a few breaking changes: change introduces a few breaking changes:
[DAG entries in nvf manual]: /index.xhtml#ch-dag-entries [DAG entries in nvf manual]: ./configuring.html#ch-dag-entries
- `vim.configRC` has been removed, which means that you have to convert all of - `vim.configRC` has been removed, which means that you have to convert all of
your custom vimscript-based configuration to Lua. As for how to do that, you your custom vimscript-based configuration to Lua. As for how to do that, you

View file

@ -249,7 +249,7 @@
- Added [Pyrefly](https://pyrefly.org/) and [zuban](https://zubanls.com/) - Added [Pyrefly](https://pyrefly.org/) and [zuban](https://zubanls.com/)
support to `languages.python` support to `languages.python`
- Added TOML support via {option}`languages.toml` and the - Added TOML support via {option}`vim.languages.toml.enable` and the
[Tombi](https://tombi-toml.github.io/tombi/) language server, linter, and [Tombi](https://tombi-toml.github.io/tombi/) language server, linter, and
formatter. formatter.

View file

@ -1,11 +1,11 @@
# Offline Documentation {#sec-offline-documentation} # Offline Documentation {#sec-offline-documentation}
[https://notashelf.github.io/nvf/options.html]: https://notashelf.github.io/nvf/options.html [https://nvf.notashelf.dev/options.html]: https://nvf.notashelf.dev/options.html
The manpages provided by nvf contains an offline version of the option search The manpages provided by nvf contains an offline version of the option search
normally available at [https://notashelf.github.io/nvf/options.html]. You may normally available at [https://nvf.notashelf.dev/options.html]. You may use the
use the `man 5 nvf` command to view option documentation from the comfort of `man 5 nvf` command to view option documentation from the comfort of your
your terminal. terminal.
Note that this is only available for NixOS and Home-Manager module Note that this is only available for NixOS and Home-Manager module
installations. installations.