Merge pull request #1525 from snoweuph/fix/links

docs: fix links
This commit is contained in:
Snoweuph 2026-04-15 19:53:16 +02:00 committed by GitHub
commit 3b429e3d3d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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`
is false, this will contain each plugin's config instead.
7. `pluginConfigs` - the result of the nested `vim.pluginRC` (internal option,
see the [Custom Plugins](/index.xhtml#ch-custom-plugins) page for adding your
own plugins) DAG, used to set up internal plugins
see the [Custom Plugins](./configuring.html#ch-custom-plugins) page for
adding your own plugins) DAG, used to set up internal plugins
8. `extraPluginConfigs` - the result of `vim.extraPlugins`, which is not a
direct DAG, but is converted to, and resolved as one internally
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.
- 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
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
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
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/)
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
formatter.

View file

@ -1,11 +1,11 @@
# 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
normally available at [https://notashelf.github.io/nvf/options.html]. You may
use the `man 5 nvf` command to view option documentation from the comfort of
your terminal.
normally available at [https://nvf.notashelf.dev/options.html]. You may use the
`man 5 nvf` command to view option documentation from the comfort of your
terminal.
Note that this is only available for NixOS and Home-Manager module
installations.