Deploy PR #1582 preview

This commit is contained in:
GitHub Actions 2026-05-14 17:17:19 +00:00
commit 57f78517b9
4 changed files with 230 additions and 6 deletions

File diff suppressed because one or more lines are too long

View file

@ -269,6 +269,7 @@ languages have sections under the <code>vim.languages</code> attribute.</p>
<li><a class="option-reference" href="options.html#option-vim.languages.css.enable"><code class="nixos-option">vim.languages.css.enable</code></a></li>
<li><a class="option-reference" href="options.html#option-vim.languages.cue.enable"><code class="nixos-option">vim.languages.cue.enable</code></a></li>
<li><a class="option-reference" href="options.html#option-vim.languages.dart.enable"><code class="nixos-option">vim.languages.dart.enable</code></a></li>
<li><a class="option-reference" href="options.html#option-vim.languages.docker.enable"><code class="nixos-option">vim.languages.docker.enable</code></a></li>
<li><a class="option-reference" href="options.html#option-vim.languages.elixir.enable"><code class="nixos-option">vim.languages.elixir.enable</code></a></li>
<li><a class="option-reference" href="options.html#option-vim.languages.elm.enable"><code class="nixos-option">vim.languages.elm.enable</code></a></li>
<li><a class="option-reference" href="options.html#option-vim.languages.fluent.enable"><code class="nixos-option">vim.languages.fluent.enable</code></a></li>

View file

@ -5335,7 +5335,7 @@
<details class="toc-category">
<summary title="vim.languages">
<span>vim.languages</span>
<span class="toc-count">537</span>
<span class="toc-count">546</span>
</summary>
<ul>
@ -6149,6 +6149,78 @@
</a>
</li>
<li>
<a href='#option-vim.languages.docker.enable' title="vim.languages.docker.enable">
docker.enable
</a>
</li>
<li>
<a href='#option-vim.languages.docker.extraDiagnostics.enable' title="vim.languages.docker.extraDiagnostics.enable">
docker.extraDiagnostics.enable
</a>
</li>
<li>
<a href='#option-vim.languages.docker.extraDiagnostics.types' title="vim.languages.docker.extraDiagnostics.types">
docker.extraDiagnostics.types
</a>
</li>
<li>
<a href='#option-vim.languages.docker.format.enable' title="vim.languages.docker.format.enable">
docker.format.enable
</a>
</li>
<li>
<a href='#option-vim.languages.docker.format.type' title="vim.languages.docker.format.type">
docker.format.type
</a>
</li>
<li>
<a href='#option-vim.languages.docker.lsp.enable' title="vim.languages.docker.lsp.enable">
docker.lsp.enable
</a>
</li>
<li>
<a href='#option-vim.languages.docker.lsp.servers' title="vim.languages.docker.lsp.servers">
docker.lsp.servers
</a>
</li>
<li>
<a href='#option-vim.languages.docker.treesitter.enable' title="vim.languages.docker.treesitter.enable">
docker.treesitter.enable
</a>
</li>
<li>
<a href='#option-vim.languages.docker.treesitter.package' title="vim.languages.docker.treesitter.package">
docker.treesitter.package
</a>
</li>
<li>
<a href='#option-vim.languages.elixir.elixir-tools.enable' title="vim.languages.elixir.elixir-tools.enable">
elixir.elixir-tools.enable
@ -9819,7 +9891,7 @@
<details class="toc-category">
<summary title="vim.lsp">
<span>vim.lsp</span>
<span class="toc-count">155</span>
<span class="toc-count">156</span>
</summary>
<ul>
@ -10425,6 +10497,14 @@
</a>
</li>
<li>
<a href='#option-vim.lsp.presets.docker-language-server.enable' title="vim.lsp.presets.docker-language-server.enable">
presets.docker-language-server.enable
</a>
</li>
<li>
<a href='#option-vim.lsp.presets.elixir-ls.enable' title="vim.lsp.presets.elixir-ls.enable">
presets.elixir-ls.enable
@ -29253,6 +29333,125 @@ missing from <code>PATH</code>", leave this option disabled.</p>
<div class="option-default">Default: <code>pkgs.vimPlugins.nvim-treesitter.grammarPlugins.dart</code></div>
<div class="option-declared">Declared in: <code><a href="https://github.com/NotAShelf/nvf/blob/main/modules/plugins/languages/dart.nix" target="_blank">&lt;nvf/modules/plugins/languages/dart.nix&gt;</a></code></div>
</div>
<div class="option" id="option-vim.languages.docker.enable">
<h3 class="option-name">
<a href="#option-vim.languages.docker.enable" class="option-anchor">vim.languages.docker.enable</a>
<span class="copy-link" title="Copy link to this option"></span>
<span class="copy-feedback">Link copied!</span>
</h3>
<div class="option-type">Type: <code>boolean</code></div>
<div class="option-description"><html><head></head><body><p>Whether to enable Docker language support.</p>
</body></html></div>
<div class="option-default">Default: <code>false</code></div>
<div class="option-example">Example: <code>true</code></div>
<div class="option-declared">Declared in: <code><a href="https://github.com/NotAShelf/nvf/blob/main/modules/plugins/languages/docker.nix" target="_blank">&lt;nvf/modules/plugins/languages/docker.nix&gt;</a></code></div>
</div>
<div class="option" id="option-vim.languages.docker.extraDiagnostics.enable">
<h3 class="option-name">
<a href="#option-vim.languages.docker.extraDiagnostics.enable" class="option-anchor">vim.languages.docker.extraDiagnostics.enable</a>
<span class="copy-link" title="Copy link to this option"></span>
<span class="copy-feedback">Link copied!</span>
</h3>
<div class="option-type">Type: <code>boolean</code></div>
<div class="option-description"><html><head></head><body><p>Whether to enable extra Dockerfile diagnostics.</p>
</body></html></div>
<div class="option-default">Default: <code>false</code></div>
<div class="option-example">Example: <code>true</code></div>
<div class="option-declared">Declared in: <code><a href="https://github.com/NotAShelf/nvf/blob/main/modules/plugins/languages/docker.nix" target="_blank">&lt;nvf/modules/plugins/languages/docker.nix&gt;</a></code></div>
</div>
<div class="option" id="option-vim.languages.docker.extraDiagnostics.types">
<h3 class="option-name">
<a href="#option-vim.languages.docker.extraDiagnostics.types" class="option-anchor">vim.languages.docker.extraDiagnostics.types</a>
<span class="copy-link" title="Copy link to this option"></span>
<span class="copy-feedback">Link copied!</span>
</h3>
<div class="option-type">Type: <code>list of (value "hadolint" (singular enum) or (submodule))</code></div>
<div class="option-description"><html><head></head><body><p>List of Dockerfile diagnostics to enable</p>
</body></html></div>
<div class="option-default">Default: <code>[
"hadolint"
]</code></div>
<div class="option-declared">Declared in: <code><a href="https://github.com/NotAShelf/nvf/blob/main/modules/plugins/languages/docker.nix" target="_blank">&lt;nvf/modules/plugins/languages/docker.nix&gt;</a></code></div>
</div>
<div class="option" id="option-vim.languages.docker.format.enable">
<h3 class="option-name">
<a href="#option-vim.languages.docker.format.enable" class="option-anchor">vim.languages.docker.format.enable</a>
<span class="copy-link" title="Copy link to this option"></span>
<span class="copy-feedback">Link copied!</span>
</h3>
<div class="option-type">Type: <code>boolean</code></div>
<div class="option-description"><html><head></head><body><p>Whether to enable Dockerfile formatting.</p>
</body></html></div>
<div class="option-default">Default: <code>config.vim.languages.enableFormat</code></div>
<div class="option-example">Example: <code>true</code></div>
<div class="option-declared">Declared in: <code><a href="https://github.com/NotAShelf/nvf/blob/main/modules/plugins/languages/docker.nix" target="_blank">&lt;nvf/modules/plugins/languages/docker.nix&gt;</a></code></div>
</div>
<div class="option" id="option-vim.languages.docker.format.type">
<h3 class="option-name">
<a href="#option-vim.languages.docker.format.type" class="option-anchor">vim.languages.docker.format.type</a>
<span class="copy-link" title="Copy link to this option"></span>
<span class="copy-feedback">Link copied!</span>
</h3>
<div class="option-type">Type: <code>list of value "dockerfmt" (singular enum)</code></div>
<div class="option-description"><html><head></head><body><p>Dockerfile formatter to use</p>
</body></html></div>
<div class="option-default">Default: <code>[
"dockerfmt"
]</code></div>
<div class="option-declared">Declared in: <code><a href="https://github.com/NotAShelf/nvf/blob/main/modules/plugins/languages/docker.nix" target="_blank">&lt;nvf/modules/plugins/languages/docker.nix&gt;</a></code></div>
</div>
<div class="option" id="option-vim.languages.docker.lsp.enable">
<h3 class="option-name">
<a href="#option-vim.languages.docker.lsp.enable" class="option-anchor">vim.languages.docker.lsp.enable</a>
<span class="copy-link" title="Copy link to this option"></span>
<span class="copy-feedback">Link copied!</span>
</h3>
<div class="option-type">Type: <code>boolean</code></div>
<div class="option-description"><html><head></head><body><p>Whether to enable Docker LSP support.</p>
</body></html></div>
<div class="option-default">Default: <code>config.vim.lsp.enable</code></div>
<div class="option-example">Example: <code>true</code></div>
<div class="option-declared">Declared in: <code><a href="https://github.com/NotAShelf/nvf/blob/main/modules/plugins/languages/docker.nix" target="_blank">&lt;nvf/modules/plugins/languages/docker.nix&gt;</a></code></div>
</div>
<div class="option" id="option-vim.languages.docker.lsp.servers">
<h3 class="option-name">
<a href="#option-vim.languages.docker.lsp.servers" class="option-anchor">vim.languages.docker.lsp.servers</a>
<span class="copy-link" title="Copy link to this option"></span>
<span class="copy-feedback">Link copied!</span>
</h3>
<div class="option-type">Type: <code>list of value "docker-language-server" (singular enum)</code></div>
<div class="option-description"><html><head></head><body><p>Docker LSP server to use</p>
</body></html></div>
<div class="option-default">Default: <code>[
"docker-language-server"
]</code></div>
<div class="option-declared">Declared in: <code><a href="https://github.com/NotAShelf/nvf/blob/main/modules/plugins/languages/docker.nix" target="_blank">&lt;nvf/modules/plugins/languages/docker.nix&gt;</a></code></div>
</div>
<div class="option" id="option-vim.languages.docker.treesitter.enable">
<h3 class="option-name">
<a href="#option-vim.languages.docker.treesitter.enable" class="option-anchor">vim.languages.docker.treesitter.enable</a>
<span class="copy-link" title="Copy link to this option"></span>
<span class="copy-feedback">Link copied!</span>
</h3>
<div class="option-type">Type: <code>boolean</code></div>
<div class="option-description"><html><head></head><body><p>Whether to enable Docker treesitter support.</p>
</body></html></div>
<div class="option-default">Default: <code>config.vim.languages.enableTreesitter</code></div>
<div class="option-example">Example: <code>true</code></div>
<div class="option-declared">Declared in: <code><a href="https://github.com/NotAShelf/nvf/blob/main/modules/plugins/languages/docker.nix" target="_blank">&lt;nvf/modules/plugins/languages/docker.nix&gt;</a></code></div>
</div>
<div class="option" id="option-vim.languages.docker.treesitter.package">
<h3 class="option-name">
<a href="#option-vim.languages.docker.treesitter.package" class="option-anchor">vim.languages.docker.treesitter.package</a>
<span class="copy-link" title="Copy link to this option"></span>
<span class="copy-feedback">Link copied!</span>
</h3>
<div class="option-type">Type: <code>null or package</code></div>
<div class="option-description"><html><head></head><body><p>The dockerfile treesitter package to use.</p>
</body></html></div>
<div class="option-default">Default: <code>pkgs.vimPlugins.nvim-treesitter.grammarPlugins.dockerfile</code></div>
<div class="option-declared">Declared in: <code><a href="https://github.com/NotAShelf/nvf/blob/main/modules/plugins/languages/docker.nix" target="_blank">&lt;nvf/modules/plugins/languages/docker.nix&gt;</a></code></div>
</div>
<div class="option" id="option-vim.languages.elixir.elixir-tools.enable">
<h3 class="option-name">
<a href="#option-vim.languages.elixir.elixir-tools.enable" class="option-anchor">vim.languages.elixir.elixir-tools.enable</a>
@ -30233,7 +30432,7 @@ not listed in the docs</p>
<span class="copy-link" title="Copy link to this option"></span>
<span class="copy-feedback">Link copied!</span>
</h3>
<div class="option-type">Type: <code>list of ((one of "terraform-ls", "tofu-ls") or (one of "terraformls-hcl", "tofuls-hcl") convertible to it)</code></div>
<div class="option-type">Type: <code>list of ((one of "terraform-ls", "tofu-ls", "docker-language-server") or (one of "terraformls-hcl", "tofuls-hcl") convertible to it)</code></div>
<div class="option-description"><html><head></head><body><p>HCL LSP server to use</p>
</body></html></div>
<div class="option-default">Default: <code>[
@ -36313,6 +36512,22 @@ Use <code class="nixos-option">vim.lsp.servers.deno</code> for customization
<div class="option-example">Example: <code>true</code></div>
<div class="option-declared">Declared in: <code><a href="https://github.com/NotAShelf/nvf/blob/main/modules/plugins/lsp/presets/deno.nix" target="_blank">&lt;nvf/modules/plugins/lsp/presets/deno.nix&gt;</a></code></div>
</div>
<div class="option" id="option-vim.lsp.presets.docker-language-server.enable">
<h3 class="option-name">
<a href="#option-vim.lsp.presets.docker-language-server.enable" class="option-anchor">vim.lsp.presets.docker-language-server.enable</a>
<span class="copy-link" title="Copy link to this option"></span>
<span class="copy-feedback">Link copied!</span>
</h3>
<div class="option-type">Type: <code>boolean</code></div>
<div class="option-description"><html><head></head><body><p>Whether to enable the Docker Language Server.
Default <code>filetypes = [ ]</code>.
Use <code class="nixos-option">vim.lsp.servers.docker-language-server</code> for customization
.</p>
</body></html></div>
<div class="option-default">Default: <code>false</code></div>
<div class="option-example">Example: <code>true</code></div>
<div class="option-declared">Declared in: <code><a href="https://github.com/NotAShelf/nvf/blob/main/modules/plugins/lsp/presets/docker-language-server.nix" target="_blank">&lt;nvf/modules/plugins/lsp/presets/docker-language-server.nix&gt;</a></code></div>
</div>
<div class="option" id="option-vim.lsp.presets.elixir-ls.enable">
<h3 class="option-name">
<a href="#option-vim.lsp.presets.elixir-ls.enable" class="option-anchor">vim.lsp.presets.elixir-ls.enable</a>

View file

@ -516,6 +516,10 @@ more flexibility in nvf and reuse of LSPs across languages. Dropped
<code>deprecatedSingleOrListOf</code> in favor of <code>listOf</code> for the affected LSP options.</p>
</li>
<li>
<p>Added <a class="option-reference" href="options.html#option-vim.lsp.presets.docker-language-server.enable"><code class="nixos-option">vim.lsp.presets.docker-language-server.enable</code></a> for Docker
support.</p>
</li>
<li>
<p>Added <a class="option-reference" href="options.html#option-vim.lsp.presets.angular-language-server.enable"><code class="nixos-option">vim.lsp.presets.angular-language-server.enable</code></a> for Angular
Template support.</p>
</li>
@ -523,8 +527,7 @@ Template support.</p>
<p>Added <a class="option-reference" href="options.html#option-vim.lsp.presets.vtsls.enable"><code class="nixos-option">vim.lsp.presets.vtsls.enable</code></a> for Vue TypeScript support.</p>
</li>
<li>
<p>Added <a class="option-reference" href="options.html#option-vim.lsp.presets.vue-language-server.enable"><code class="nixos-option">vim.lsp.presets.vue-language-server.enable</code></a> for Vue Template
support.</p>
<p>Added <a class="option-reference" href="options.html#option-vim.lsp.presets.vue-language-server.enable"><code class="nixos-option">vim.lsp.presets.vue-language-server.enable</code></a> for Vue Template</p>
</li>
<li>
<p>Added <a class="option-reference" href="options.html#option-vim.lsp.presets.some-sass-language-server.enable"><code class="nixos-option">vim.lsp.presets.some-sass-language-server.enable</code></a>.</p>
@ -549,6 +552,11 @@ tree-sitter incompatibilities.</p>
<code>languages.lua</code>.</p>
</li>
<li>
<p>Added <code>languages.docker</code> for Docker and Docker-Compose support. Thanks to
<a href="https://github.com/poseidon-rises">poseidon-rises</a> for creating most of it in
<a href="https://github.com/NotAShelf/nvf/pull/1104">!1104</a>.</p>
</li>
<li>
<p>Added <a href="https://mdformat.rtfd.io/"><code>mdformat</code></a> support to <code>languages.markdown</code>
with the extensions for <a href="https://github.github.com/gfm/">GFM</a>,
<a href="https://www.markdownlang.com/advanced/frontmatter.html">front matter</a> and