neovim-flake/options.html

1652 lines
596 KiB
HTML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Appendix A. Configuration Options</title><link rel="stylesheet" type="text/css" href="style.css" /><script src="highlight.min.js" type="text/javascript"></script><script src="highlight.load.js" type="text/javascript"></script><meta name="generator" content="DocBook XSL Stylesheets V1.79.2" /><link rel="home" href="index.html" title="neovim-flake Manual" /><link rel="up" href="index.html" title="neovim-flake Manual" /><link rel="prev" href="index.html" title="neovim-flake Manual" /><link rel="next" href="release-notes.html" title="Appendix B. Release Notes" /></head><body><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Appendix A. Configuration Options</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="index.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="release-notes.html">Next</a></td></tr></table><hr /></div><div class="appendix"><div class="titlepage"><div><div><h1 class="title"><a id="ch-options"></a>Appendix A. Configuration Options</h1></div></div></div><div class="variablelist"><a id="neovim-flake-options"></a><dl class="variablelist"><dt><span class="term"><a id="opt-_module.args"></a><a class="term" href="options.html#opt-_module.args"><code class="option">_module.args</code></a></span></dt><dd><p>Additional arguments passed to each module in addition to ones
like `lib`, `config`,
and `pkgs`, `modulesPath`.
This option is also available to all submodules. Submodules do not
inherit args from their parent module, nor do they provide args to
their parent module or sibling submodules. The sole exception to
this is the argument `name` which is provided by
parent modules to a submodule and contains the attribute name
the submodule is bound to, or a unique generated name if it is
not bound to an attribute.
Some arguments are already passed by default, of which the
following *cannot* be changed with this option:
- {var}`lib`: The nixpkgs library.
- {var}`config`: The results of all options after merging the values from all modules together.
- {var}`options`: The options declared in all modules.
- {var}`specialArgs`: The `specialArgs` argument passed to `evalModules`.
- All attributes of {var}`specialArgs`
Whereas option values can generally depend on other option values
thanks to laziness, this does not apply to `imports`, which
must be computed statically before anything else.
For this reason, callers of the module system can provide `specialArgs`
which are available during import resolution.
For NixOS, `specialArgs` includes
{var}`modulesPath`, which allows you to import
extra modules from the nixpkgs package tree without having to
somehow make the module aware of the location of the
`nixpkgs` or NixOS directories.
```
{ modulesPath, ... }: {
imports = [
(modulesPath + "/profiles/minimal.nix")
];
}
```
For NixOS, the default value for this option includes at least this argument:
- {var}`pkgs`: The nixpkgs package set according to
the {option}`nixpkgs.pkgs` option.</p><p><span class="emphasis"><em>Type:</em></span> lazy attribute set of raw value</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/lib/modules.nix#blob-path" target="_top">
&lt;neovim-flake/lib/modules.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.enableEditorconfig"></a><a class="term" href="options.html#opt-vim.enableEditorconfig"><code class="option">vim.enableEditorconfig</code></a></span></dt><dd><p>Follow editorconfig rules in current directory</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.enableLuaLoader"></a><a class="term" href="options.html#opt-vim.enableLuaLoader"><code class="option">vim.enableLuaLoader</code></a></span></dt><dd><p>Whether to enable experimental Lua module loader to speed up the start up process.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.enable"></a><a class="term" href="options.html#opt-vim.assistant.copilot.enable"><code class="option">vim.assistant.copilot.enable</code></a></span></dt><dd><p>Whether to enable GitHub Copilot AI assistant.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.cmp.enable"></a><a class="term" href="options.html#opt-vim.assistant.copilot.cmp.enable"><code class="option">vim.assistant.copilot.cmp.enable</code></a></span></dt><dd><p>Whether to enable nvim-cmp integration for GitHub Copilot.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.copilotNodeCommand"></a><a class="term" href="options.html#opt-vim.assistant.copilot.copilotNodeCommand"><code class="option">vim.assistant.copilot.copilotNodeCommand</code></a></span></dt><dd><p>The command that will be executed to initiate nodejs for GitHub Copilot.
Recommended to leave as default.</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"\${pkgs.nodejs-slim.out}/bin/node"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.copilotNodePackage"></a><a class="term" href="options.html#opt-vim.assistant.copilot.copilotNodePackage"><code class="option">vim.assistant.copilot.copilotNodePackage</code></a></span></dt><dd><p>The nodeJS package that will be used for GitHub Copilot. If you are using a custom node command
you may want to set this option to null so that the package is not pulled from nixpkgs.</p><p><span class="emphasis"><em>Type:</em></span> null or package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation nodejs-slim-18.16.1&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.mappings.panel.accept"></a><a class="term" href="options.html#opt-vim.assistant.copilot.mappings.panel.accept"><code class="option">vim.assistant.copilot.mappings.panel.accept</code></a></span></dt><dd><p>Accept suggestion</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;CR&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.mappings.panel.jumpNext"></a><a class="term" href="options.html#opt-vim.assistant.copilot.mappings.panel.jumpNext"><code class="option">vim.assistant.copilot.mappings.panel.jumpNext</code></a></span></dt><dd><p>Jump to next suggestion</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"]]"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.mappings.panel.jumpPrev"></a><a class="term" href="options.html#opt-vim.assistant.copilot.mappings.panel.jumpPrev"><code class="option">vim.assistant.copilot.mappings.panel.jumpPrev</code></a></span></dt><dd><p>Jump to previous suggestion</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"[["</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.mappings.panel.open"></a><a class="term" href="options.html#opt-vim.assistant.copilot.mappings.panel.open"><code class="option">vim.assistant.copilot.mappings.panel.open</code></a></span></dt><dd><p>Open suggestions</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;M-CR&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.mappings.panel.refresh"></a><a class="term" href="options.html#opt-vim.assistant.copilot.mappings.panel.refresh"><code class="option">vim.assistant.copilot.mappings.panel.refresh</code></a></span></dt><dd><p>Refresh suggestions</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"gr"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.mappings.suggestion.accept"></a><a class="term" href="options.html#opt-vim.assistant.copilot.mappings.suggestion.accept"><code class="option">vim.assistant.copilot.mappings.suggestion.accept</code></a></span></dt><dd><p>Accept suggetion</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;M-l&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.mappings.suggestion.acceptLine"></a><a class="term" href="options.html#opt-vim.assistant.copilot.mappings.suggestion.acceptLine"><code class="option">vim.assistant.copilot.mappings.suggestion.acceptLine</code></a></span></dt><dd><p>Accept next line</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.mappings.suggestion.acceptWord"></a><a class="term" href="options.html#opt-vim.assistant.copilot.mappings.suggestion.acceptWord"><code class="option">vim.assistant.copilot.mappings.suggestion.acceptWord</code></a></span></dt><dd><p>Accept next word</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.mappings.suggestion.dismiss"></a><a class="term" href="options.html#opt-vim.assistant.copilot.mappings.suggestion.dismiss"><code class="option">vim.assistant.copilot.mappings.suggestion.dismiss</code></a></span></dt><dd><p>Dismiss suggestion</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;C-]&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.mappings.suggestion.next"></a><a class="term" href="options.html#opt-vim.assistant.copilot.mappings.suggestion.next"><code class="option">vim.assistant.copilot.mappings.suggestion.next</code></a></span></dt><dd><p>Next suggestion</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;M-]&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.mappings.suggestion.prev"></a><a class="term" href="options.html#opt-vim.assistant.copilot.mappings.suggestion.prev"><code class="option">vim.assistant.copilot.mappings.suggestion.prev</code></a></span></dt><dd><p>Previous suggestion</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;M-[&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.panel.position"></a><a class="term" href="options.html#opt-vim.assistant.copilot.panel.position"><code class="option">vim.assistant.copilot.panel.position</code></a></span></dt><dd><p>Panel position</p><p><span class="emphasis"><em>Type:</em></span> one of "bottom", "top", "left", "right"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"bottom"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.assistant.copilot.panel.ratio"></a><a class="term" href="options.html#opt-vim.assistant.copilot.panel.ratio"><code class="option">vim.assistant.copilot.panel.ratio</code></a></span></dt><dd><p>Panel size</p><p><span class="emphasis"><em>Type:</em></span> floating point number</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">0.4</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/assistant/copilot/copilot.nix#blob-path" target="_top">
&lt;neovim-flake/modules/assistant/copilot/copilot.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autoIndent"></a><a class="term" href="options.html#opt-vim.autoIndent"><code class="option">vim.autoIndent</code></a></span></dt><dd><p>Enable auto indent</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autocomplete.enable"></a><a class="term" href="options.html#opt-vim.autocomplete.enable"><code class="option">vim.autocomplete.enable</code></a></span></dt><dd><p>Whether to enable enable autocomplete.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/completion/nvim-cmp/nvim-cmp.nix#blob-path" target="_top">
&lt;neovim-flake/modules/completion/nvim-cmp/nvim-cmp.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autocomplete.formatting.format"></a><a class="term" href="options.html#opt-vim.autocomplete.formatting.format"><code class="option">vim.autocomplete.formatting.format</code></a></span></dt><dd><p class="simpara">The function used to customize the appearance of the completion menu.</p><p class="simpara">If <a class="xref" href="options.html#opt-vim.lsp.lspkind.enable"><code class="option">vim.lsp.lspkind.enable</code></a> is true, then the function
will be called before modifications from lspkind.</p><p class="simpara">Default is to call the menu mapping function.</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"nvim_cmp_menu_map"</code></p><p><span class="emphasis"><em>Example:</em></span> </p><pre class="programlisting lua">---
function(entry, vim_item)
return vim_item
end
---</pre><p>
</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/completion/nvim-cmp/nvim-cmp.nix#blob-path" target="_top">
&lt;neovim-flake/modules/completion/nvim-cmp/nvim-cmp.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autocomplete.mappings.close"></a><a class="term" href="options.html#opt-vim.autocomplete.mappings.close"><code class="option">vim.autocomplete.mappings.close</code></a></span></dt><dd><p>Close [nvim-cmp]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;C-e&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/completion/nvim-cmp/nvim-cmp.nix#blob-path" target="_top">
&lt;neovim-flake/modules/completion/nvim-cmp/nvim-cmp.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autocomplete.mappings.complete"></a><a class="term" href="options.html#opt-vim.autocomplete.mappings.complete"><code class="option">vim.autocomplete.mappings.complete</code></a></span></dt><dd><p>Complete [nvim-cmp]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;C-Space&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/completion/nvim-cmp/nvim-cmp.nix#blob-path" target="_top">
&lt;neovim-flake/modules/completion/nvim-cmp/nvim-cmp.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autocomplete.mappings.confirm"></a><a class="term" href="options.html#opt-vim.autocomplete.mappings.confirm"><code class="option">vim.autocomplete.mappings.confirm</code></a></span></dt><dd><p>Confirm [nvim-cmp]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;CR&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/completion/nvim-cmp/nvim-cmp.nix#blob-path" target="_top">
&lt;neovim-flake/modules/completion/nvim-cmp/nvim-cmp.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autocomplete.mappings.next"></a><a class="term" href="options.html#opt-vim.autocomplete.mappings.next"><code class="option">vim.autocomplete.mappings.next</code></a></span></dt><dd><p>Next item [nvim-cmp]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;Tab&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/completion/nvim-cmp/nvim-cmp.nix#blob-path" target="_top">
&lt;neovim-flake/modules/completion/nvim-cmp/nvim-cmp.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autocomplete.mappings.previous"></a><a class="term" href="options.html#opt-vim.autocomplete.mappings.previous"><code class="option">vim.autocomplete.mappings.previous</code></a></span></dt><dd><p>Previous item [nvim-cmp]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;S-Tab&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/completion/nvim-cmp/nvim-cmp.nix#blob-path" target="_top">
&lt;neovim-flake/modules/completion/nvim-cmp/nvim-cmp.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autocomplete.mappings.scrollDocsDown"></a><a class="term" href="options.html#opt-vim.autocomplete.mappings.scrollDocsDown"><code class="option">vim.autocomplete.mappings.scrollDocsDown</code></a></span></dt><dd><p>Scroll docs down [nvim-cmp]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;C-f&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/completion/nvim-cmp/nvim-cmp.nix#blob-path" target="_top">
&lt;neovim-flake/modules/completion/nvim-cmp/nvim-cmp.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autocomplete.mappings.scrollDocsUp"></a><a class="term" href="options.html#opt-vim.autocomplete.mappings.scrollDocsUp"><code class="option">vim.autocomplete.mappings.scrollDocsUp</code></a></span></dt><dd><p>Scroll docs up [nvim-cmp]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;C-d&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/completion/nvim-cmp/nvim-cmp.nix#blob-path" target="_top">
&lt;neovim-flake/modules/completion/nvim-cmp/nvim-cmp.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autocomplete.sources"></a><a class="term" href="options.html#opt-vim.autocomplete.sources"><code class="option">vim.autocomplete.sources</code></a></span></dt><dd><p class="simpara">Attribute set of source names for nvim-cmp.</p><p class="simpara">If an attribute set is provided, then the menu value of
<code class="literal">vim_item</code> in the format will be set to the value (if
utilizing the <code class="literal">nvim_cmp_menu_map</code> function).</p><p class="simpara">Note: only use a single attribute name per attribute set</p><p><span class="emphasis"><em>Type:</em></span> attribute set of (null or string)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Example:</em></span> </p><pre class="programlisting">''
{nvim-cmp = null; buffer = "[Buffer]";}
''</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/completion/nvim-cmp/nvim-cmp.nix#blob-path" target="_top">
&lt;neovim-flake/modules/completion/nvim-cmp/nvim-cmp.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autocomplete.type"></a><a class="term" href="options.html#opt-vim.autocomplete.type"><code class="option">vim.autocomplete.type</code></a></span></dt><dd><p>Set the autocomplete plugin. Options: [nvim-cmp]</p><p><span class="emphasis"><em>Type:</em></span> value "nvim-cmp" (singular enum)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"nvim-cmp"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/completion/nvim-cmp/nvim-cmp.nix#blob-path" target="_top">
&lt;neovim-flake/modules/completion/nvim-cmp/nvim-cmp.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autopairs.enable"></a><a class="term" href="options.html#opt-vim.autopairs.enable"><code class="option">vim.autopairs.enable</code></a></span></dt><dd><p>Whether to enable autopairs.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/autopairs/nvim-autopairs/nvim-autopairs.nix#blob-path" target="_top">
&lt;neovim-flake/modules/autopairs/nvim-autopairs/nvim-autopairs.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autopairs.nvim-compe.auto_select"></a><a class="term" href="options.html#opt-vim.autopairs.nvim-compe.auto_select"><code class="option">vim.autopairs.nvim-compe.auto_select</code></a></span></dt><dd><p>auto select first item</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/autopairs/nvim-autopairs/nvim-autopairs.nix#blob-path" target="_top">
&lt;neovim-flake/modules/autopairs/nvim-autopairs/nvim-autopairs.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autopairs.nvim-compe.map_complete"></a><a class="term" href="options.html#opt-vim.autopairs.nvim-compe.map_complete"><code class="option">vim.autopairs.nvim-compe.map_complete</code></a></span></dt><dd><p>auto insert `(` after select function or method item</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/autopairs/nvim-autopairs/nvim-autopairs.nix#blob-path" target="_top">
&lt;neovim-flake/modules/autopairs/nvim-autopairs/nvim-autopairs.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autopairs.nvim-compe.map_cr"></a><a class="term" href="options.html#opt-vim.autopairs.nvim-compe.map_cr"><code class="option">vim.autopairs.nvim-compe.map_cr</code></a></span></dt><dd><p class="simpara">map &lt;CR&gt; on insert mode</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/autopairs/nvim-autopairs/nvim-autopairs.nix#blob-path" target="_top">
&lt;neovim-flake/modules/autopairs/nvim-autopairs/nvim-autopairs.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.autopairs.type"></a><a class="term" href="options.html#opt-vim.autopairs.type"><code class="option">vim.autopairs.type</code></a></span></dt><dd><p>Set the autopairs type. Options: nvim-autopairs [nvim-autopairs]</p><p><span class="emphasis"><em>Type:</em></span> value "nvim-autopairs" (singular enum)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"nvim-autopairs"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/autopairs/nvim-autopairs/nvim-autopairs.nix#blob-path" target="_top">
&lt;neovim-flake/modules/autopairs/nvim-autopairs/nvim-autopairs.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.bell"></a><a class="term" href="options.html#opt-vim.bell"><code class="option">vim.bell</code></a></span></dt><dd><p>Set how bells are handled. Options: on, visual or none</p><p><span class="emphasis"><em>Type:</em></span> one of "none", "visual", "on"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"none"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.binds.cheatsheet.enable"></a><a class="term" href="options.html#opt-vim.binds.cheatsheet.enable"><code class="option">vim.binds.cheatsheet.enable</code></a></span></dt><dd><p>Whether to enable cheatsheet-nvim: searchable cheatsheet for nvim using telescope.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/binds/cheatsheet/cheatsheet.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/binds/cheatsheet/cheatsheet.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.binds.whichKey.enable"></a><a class="term" href="options.html#opt-vim.binds.whichKey.enable"><code class="option">vim.binds.whichKey.enable</code></a></span></dt><dd><p>Whether to enable which-key keybind helper menu.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/binds/which-key/which-key.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/binds/which-key/which-key.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.cmdHeight"></a><a class="term" href="options.html#opt-vim.cmdHeight"><code class="option">vim.cmdHeight</code></a></span></dt><dd><p>Height of the command pane</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">1</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.colourTerm"></a><a class="term" href="options.html#opt-vim.colourTerm"><code class="option">vim.colourTerm</code></a></span></dt><dd><p>Set terminal up for 256 colours</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.comments.comment-nvim.enable"></a><a class="term" href="options.html#opt-vim.comments.comment-nvim.enable"><code class="option">vim.comments.comment-nvim.enable</code></a></span></dt><dd><p>Whether to enable smart and powerful comment plugin for neovim comment-nvim.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/comments/comment-nvim/comment-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/comments/comment-nvim/comment-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.comments.comment-nvim.mappings.toggleCurrentBlock"></a><a class="term" href="options.html#opt-vim.comments.comment-nvim.mappings.toggleCurrentBlock"><code class="option">vim.comments.comment-nvim.mappings.toggleCurrentBlock</code></a></span></dt><dd><p>Toggle current block comment</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"gbc"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/comments/comment-nvim/comment-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/comments/comment-nvim/comment-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.comments.comment-nvim.mappings.toggleCurrentLine"></a><a class="term" href="options.html#opt-vim.comments.comment-nvim.mappings.toggleCurrentLine"><code class="option">vim.comments.comment-nvim.mappings.toggleCurrentLine</code></a></span></dt><dd><p>Toggle current line comment</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"gcc"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/comments/comment-nvim/comment-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/comments/comment-nvim/comment-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.comments.comment-nvim.mappings.toggleOpLeaderBlock"></a><a class="term" href="options.html#opt-vim.comments.comment-nvim.mappings.toggleOpLeaderBlock"><code class="option">vim.comments.comment-nvim.mappings.toggleOpLeaderBlock</code></a></span></dt><dd><p>Toggle block comment</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"gb"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/comments/comment-nvim/comment-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/comments/comment-nvim/comment-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.comments.comment-nvim.mappings.toggleOpLeaderLine"></a><a class="term" href="options.html#opt-vim.comments.comment-nvim.mappings.toggleOpLeaderLine"><code class="option">vim.comments.comment-nvim.mappings.toggleOpLeaderLine</code></a></span></dt><dd><p>Toggle line comment</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"gc"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/comments/comment-nvim/comment-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/comments/comment-nvim/comment-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.comments.comment-nvim.mappings.toggleSelectedBlock"></a><a class="term" href="options.html#opt-vim.comments.comment-nvim.mappings.toggleSelectedBlock"><code class="option">vim.comments.comment-nvim.mappings.toggleSelectedBlock</code></a></span></dt><dd><p>Toggle selected block</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"gb"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/comments/comment-nvim/comment-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/comments/comment-nvim/comment-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.comments.comment-nvim.mappings.toggleSelectedLine"></a><a class="term" href="options.html#opt-vim.comments.comment-nvim.mappings.toggleSelectedLine"><code class="option">vim.comments.comment-nvim.mappings.toggleSelectedLine</code></a></span></dt><dd><p>Toggle selected comment</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"gc"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/comments/comment-nvim/comment-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/comments/comment-nvim/comment-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.configRC"></a><a class="term" href="options.html#opt-vim.configRC"><code class="option">vim.configRC</code></a></span></dt><dd><p>vimrc contents</p><p><span class="emphasis"><em>Type:</em></span> (DAG of strings concatenated with "\n") or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.cursorlineOpt"></a><a class="term" href="options.html#opt-vim.cursorlineOpt"><code class="option">vim.cursorlineOpt</code></a></span></dt><dd><p>Highlight the text line of the cursor with CursorLine hl-CursorLine</p><p><span class="emphasis"><em>Type:</em></span> one of "line", "screenline", "number", "both"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"line"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.alpha.enable"></a><a class="term" href="options.html#opt-vim.dashboard.alpha.enable"><code class="option">vim.dashboard.alpha.enable</code></a></span></dt><dd><p>Whether to enable dashboard via alpha.nvim.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/alpha/alpha.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/alpha/alpha.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.dashboard-nvim.enable"></a><a class="term" href="options.html#opt-vim.dashboard.dashboard-nvim.enable"><code class="option">vim.dashboard.dashboard-nvim.enable</code></a></span></dt><dd><p>Whether to enable dashboard via dashboard.nvim.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/dashboard-nvim/dashboard-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/dashboard-nvim/dashboard-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.enable"></a><a class="term" href="options.html#opt-vim.dashboard.startify.enable"><code class="option">vim.dashboard.startify.enable</code></a></span></dt><dd><p>Whether to enable dashboard via vim-startify.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.bookmarks"></a><a class="term" href="options.html#opt-vim.dashboard.startify.bookmarks"><code class="option">vim.dashboard.startify.bookmarks</code></a></span></dt><dd><p>List of book marks to disaply on start page</p><p><span class="emphasis"><em>Type:</em></span> list of (attribute set)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Example:</em></span> </p><pre class="programlisting">{
c = "~/.vimrc";
}</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.changeDirCmd"></a><a class="term" href="options.html#opt-vim.dashboard.startify.changeDirCmd"><code class="option">vim.dashboard.startify.changeDirCmd</code></a></span></dt><dd><p>Command to change the current window with. Can be cd, lcd or tcd</p><p><span class="emphasis"><em>Type:</em></span> one of "cd", "lcd", "tcd"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"lcd"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.changeToDir"></a><a class="term" href="options.html#opt-vim.dashboard.startify.changeToDir"><code class="option">vim.dashboard.startify.changeToDir</code></a></span></dt><dd><p>Should vim change to the directory of the file you open</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.changeToVCRoot"></a><a class="term" href="options.html#opt-vim.dashboard.startify.changeToVCRoot"><code class="option">vim.dashboard.startify.changeToVCRoot</code></a></span></dt><dd><p>Should vim change to the version control root when opening a file</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.commands"></a><a class="term" href="options.html#opt-vim.dashboard.startify.commands"><code class="option">vim.dashboard.startify.commands</code></a></span></dt><dd><p>Commands that are presented to the user on startify page</p><p><span class="emphasis"><em>Type:</em></span> list of (string or (attribute set) or list of string)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.customFooter"></a><a class="term" href="options.html#opt-vim.dashboard.startify.customFooter"><code class="option">vim.dashboard.startify.customFooter</code></a></span></dt><dd><p>Text to place in the footer</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.customHeader"></a><a class="term" href="options.html#opt-vim.dashboard.startify.customHeader"><code class="option">vim.dashboard.startify.customHeader</code></a></span></dt><dd><p>Text to place in the header</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.customIndices"></a><a class="term" href="options.html#opt-vim.dashboard.startify.customIndices"><code class="option">vim.dashboard.startify.customIndices</code></a></span></dt><dd><p>Specify a list of default charecters to use instead of numbers</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.disableOnStartup"></a><a class="term" href="options.html#opt-vim.dashboard.startify.disableOnStartup"><code class="option">vim.dashboard.startify.disableOnStartup</code></a></span></dt><dd><p>Prevent startify from opening on startup but can be called with :Startify</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.filesNumber"></a><a class="term" href="options.html#opt-vim.dashboard.startify.filesNumber"><code class="option">vim.dashboard.startify.filesNumber</code></a></span></dt><dd><p>How many files to list</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">10</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.lists"></a><a class="term" href="options.html#opt-vim.dashboard.startify.lists"><code class="option">vim.dashboard.startify.lists</code></a></span></dt><dd><p>Specify the lists and in what order they are displayed on startify.</p><p><span class="emphasis"><em>Type:</em></span> list of (attribute set)</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">[
{
header = [
"MRU"
];
type = "files";
}
{
header = [
"MRU Current Directory"
];
type = "dir";
}
{
header = [
"Sessions"
];
type = "sessions";
}
{
header = [
"Bookmarks"
];
type = "bookmarks";
}
{
header = [
"Commands"
];
type = "commands";
}
]</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.paddingLeft"></a><a class="term" href="options.html#opt-vim.dashboard.startify.paddingLeft"><code class="option">vim.dashboard.startify.paddingLeft</code></a></span></dt><dd><p>Number of spaces used for left padding.</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">3</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.sessionAutoload"></a><a class="term" href="options.html#opt-vim.dashboard.startify.sessionAutoload"><code class="option">vim.dashboard.startify.sessionAutoload</code></a></span></dt><dd><p>Make startify auto load Session.vim files from the current directory</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.sessionBeforeSave"></a><a class="term" href="options.html#opt-vim.dashboard.startify.sessionBeforeSave"><code class="option">vim.dashboard.startify.sessionBeforeSave</code></a></span></dt><dd><p>Commands to run before saving a session</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.sessionDeleteBuffers"></a><a class="term" href="options.html#opt-vim.dashboard.startify.sessionDeleteBuffers"><code class="option">vim.dashboard.startify.sessionDeleteBuffers</code></a></span></dt><dd><p>Delete all buffers when loading or closing a session</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.sessionDir"></a><a class="term" href="options.html#opt-vim.dashboard.startify.sessionDir"><code class="option">vim.dashboard.startify.sessionDir</code></a></span></dt><dd><p>Directory to save and load sessions from</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"~/.vim/session"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.sessionPersistence"></a><a class="term" href="options.html#opt-vim.dashboard.startify.sessionPersistence"><code class="option">vim.dashboard.startify.sessionPersistence</code></a></span></dt><dd><p>Persist session before leaving vim or switching session</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.sessionRemoveLines"></a><a class="term" href="options.html#opt-vim.dashboard.startify.sessionRemoveLines"><code class="option">vim.dashboard.startify.sessionRemoveLines</code></a></span></dt><dd><p>Patterns to remove from session files</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.sessionSavecmds"></a><a class="term" href="options.html#opt-vim.dashboard.startify.sessionSavecmds"><code class="option">vim.dashboard.startify.sessionSavecmds</code></a></span></dt><dd><p>List of commands to run when loading a session.</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.sessionSavevars"></a><a class="term" href="options.html#opt-vim.dashboard.startify.sessionSavevars"><code class="option">vim.dashboard.startify.sessionSavevars</code></a></span></dt><dd><p>List of variables to save into a session file.</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.sessionSort"></a><a class="term" href="options.html#opt-vim.dashboard.startify.sessionSort"><code class="option">vim.dashboard.startify.sessionSort</code></a></span></dt><dd><p>Set if you want items sorted by date rather than alphabetically</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.skipList"></a><a class="term" href="options.html#opt-vim.dashboard.startify.skipList"><code class="option">vim.dashboard.startify.skipList</code></a></span></dt><dd><p>List of regex patterns to exclude from MRU lists</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.skipListServer"></a><a class="term" href="options.html#opt-vim.dashboard.startify.skipListServer"><code class="option">vim.dashboard.startify.skipListServer</code></a></span></dt><dd><p>List of vim servers to not load startify for</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.unsafe"></a><a class="term" href="options.html#opt-vim.dashboard.startify.unsafe"><code class="option">vim.dashboard.startify.unsafe</code></a></span></dt><dd><p>Turns on unsafe mode for Startify. Stops resolving links, checking files are readable and filtering bookmark list</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.updateOldFiles"></a><a class="term" href="options.html#opt-vim.dashboard.startify.updateOldFiles"><code class="option">vim.dashboard.startify.updateOldFiles</code></a></span></dt><dd><p>Set if you want startify to always update and not just when neovim closes</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.dashboard.startify.useEnv"></a><a class="term" href="options.html#opt-vim.dashboard.startify.useEnv"><code class="option">vim.dashboard.startify.useEnv</code></a></span></dt><dd><p>Show environment variables in path if name is shorter than value</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/dashboard/startify/startify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/dashboard/startify/startify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugMode.enable"></a><a class="term" href="options.html#opt-vim.debugMode.enable"><code class="option">vim.debugMode.enable</code></a></span></dt><dd><p>Whether to enable debug mode.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugMode.level"></a><a class="term" href="options.html#opt-vim.debugMode.level"><code class="option">vim.debugMode.level</code></a></span></dt><dd><p>Set the debug level</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">20</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugMode.logFile"></a><a class="term" href="options.html#opt-vim.debugMode.logFile"><code class="option">vim.debugMode.logFile</code></a></span></dt><dd><p>Set the log file</p><p><span class="emphasis"><em>Type:</em></span> path</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"/tmp/nvim.log"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.enable"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.enable"><code class="option">vim.debugger.nvim-dap.enable</code></a></span></dt><dd><p>Whether to enable Enable debugging via nvim-dap.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.mappings.continue"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.mappings.continue"><code class="option">vim.debugger.nvim-dap.mappings.continue</code></a></span></dt><dd><p>Contiue</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;dc"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.mappings.goDown"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.mappings.goDown"><code class="option">vim.debugger.nvim-dap.mappings.goDown</code></a></span></dt><dd><p>Go down stacktrace</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;dvi"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.mappings.goUp"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.mappings.goUp"><code class="option">vim.debugger.nvim-dap.mappings.goUp</code></a></span></dt><dd><p>Go up stacktrace</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;dvo"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.mappings.hover"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.mappings.hover"><code class="option">vim.debugger.nvim-dap.mappings.hover</code></a></span></dt><dd><p>Hover</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;dh"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.mappings.restart"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.mappings.restart"><code class="option">vim.debugger.nvim-dap.mappings.restart</code></a></span></dt><dd><p>Restart</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;dR"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.mappings.runLast"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.mappings.runLast"><code class="option">vim.debugger.nvim-dap.mappings.runLast</code></a></span></dt><dd><p>Re-run Last Debug Session</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;d."</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.mappings.runToCursor"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.mappings.runToCursor"><code class="option">vim.debugger.nvim-dap.mappings.runToCursor</code></a></span></dt><dd><p>Continue to the current cursor</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;dgc"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.mappings.stepBack"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.mappings.stepBack"><code class="option">vim.debugger.nvim-dap.mappings.stepBack</code></a></span></dt><dd><p>Step back</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;dgk"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.mappings.stepInto"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.mappings.stepInto"><code class="option">vim.debugger.nvim-dap.mappings.stepInto</code></a></span></dt><dd><p>Step into function</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;dgi"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.mappings.stepOut"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.mappings.stepOut"><code class="option">vim.debugger.nvim-dap.mappings.stepOut</code></a></span></dt><dd><p>Step out of function</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;dgo"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.mappings.stepOver"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.mappings.stepOver"><code class="option">vim.debugger.nvim-dap.mappings.stepOver</code></a></span></dt><dd><p>Next step</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;dgj"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.mappings.terminate"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.mappings.terminate"><code class="option">vim.debugger.nvim-dap.mappings.terminate</code></a></span></dt><dd><p>Terminate</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;dq"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.mappings.toggleBreakpoint"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.mappings.toggleBreakpoint"><code class="option">vim.debugger.nvim-dap.mappings.toggleBreakpoint</code></a></span></dt><dd><p>Toggle breakpoint</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;db"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.mappings.toggleDapUI"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.mappings.toggleDapUI"><code class="option">vim.debugger.nvim-dap.mappings.toggleDapUI</code></a></span></dt><dd><p>Toggle DAP-UI</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;du"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.mappings.toggleRepl"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.mappings.toggleRepl"><code class="option">vim.debugger.nvim-dap.mappings.toggleRepl</code></a></span></dt><dd><p>Toggle Repl</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;dr"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.sources"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.sources"><code class="option">vim.debugger.nvim-dap.sources</code></a></span></dt><dd><p>List of debuggers to install</p><p><span class="emphasis"><em>Type:</em></span> attribute set of Concatenated string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.ui.enable"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.ui.enable"><code class="option">vim.debugger.nvim-dap.ui.enable</code></a></span></dt><dd><p>Whether to enable Enable UI extension for nvim-dap.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.debugger.nvim-dap.ui.autoStart"></a><a class="term" href="options.html#opt-vim.debugger.nvim-dap.ui.autoStart"><code class="option">vim.debugger.nvim-dap.ui.autoStart</code></a></span></dt><dd><p>Automatically Opens and Closes DAP-UI upon starting/closing a debugging session</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/debugger/nvim-dap/nvim-dap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.disableArrows"></a><a class="term" href="options.html#opt-vim.disableArrows"><code class="option">vim.disableArrows</code></a></span></dt><dd><p>Set to prevent arrow keys from moving cursor</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.enable"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.enable"><code class="option">vim.filetree.nvimTreeLua.enable</code></a></span></dt><dd><p>Whether to enable filetree via nvim-tree-lua.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.actions.changeDir.global"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.actions.changeDir.global"><code class="option">vim.filetree.nvimTreeLua.actions.changeDir.global</code></a></span></dt><dd><p>Change directory when changing nvim's directory (DirChanged event).</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.actions.expandAll.exclude"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.actions.expandAll.exclude"><code class="option">vim.filetree.nvimTreeLua.actions.expandAll.exclude</code></a></span></dt><dd><p>Exclude files from expand all</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.actions.openFile.quitOnOpen"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.actions.openFile.quitOnOpen"><code class="option">vim.filetree.nvimTreeLua.actions.openFile.quitOnOpen</code></a></span></dt><dd><p>Quit the tree when opening a file</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.actions.openFile.resizeWindow"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.actions.openFile.resizeWindow"><code class="option">vim.filetree.nvimTreeLua.actions.openFile.resizeWindow</code></a></span></dt><dd><p>Resize the tree when opening a file</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.actions.openFile.windowPicker.enable"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.actions.openFile.windowPicker.enable"><code class="option">vim.filetree.nvimTreeLua.actions.openFile.windowPicker.enable</code></a></span></dt><dd><p>Whether to enable Window picker.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.actions.openFile.windowPicker.chars"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.actions.openFile.windowPicker.chars"><code class="option">vim.filetree.nvimTreeLua.actions.openFile.windowPicker.chars</code></a></span></dt><dd><p>A string of chars used as identifiers by the window picker</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.closeOnLastWindow"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.closeOnLastWindow"><code class="option">vim.filetree.nvimTreeLua.closeOnLastWindow</code></a></span></dt><dd><p>Close when tree is last window open</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.disableNetRW"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.disableNetRW"><code class="option">vim.filetree.nvimTreeLua.disableNetRW</code></a></span></dt><dd><p>Disables netrw and replaces it with tree</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.filesystemWatchers.enable"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.filesystemWatchers.enable"><code class="option">vim.filetree.nvimTreeLua.filesystemWatchers.enable</code></a></span></dt><dd><p>Enable filesystem watchers</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.followBufferFile"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.followBufferFile"><code class="option">vim.filetree.nvimTreeLua.followBufferFile</code></a></span></dt><dd><p>Follow file that is in current buffer on tree</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.git.enable"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.git.enable"><code class="option">vim.filetree.nvimTreeLua.git.enable</code></a></span></dt><dd><p>Whether to enable Git integration.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.git.ignore"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.git.ignore"><code class="option">vim.filetree.nvimTreeLua.git.ignore</code></a></span></dt><dd><p>Ignore files in git</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.groupEmptyFolders"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.groupEmptyFolders"><code class="option">vim.filetree.nvimTreeLua.groupEmptyFolders</code></a></span></dt><dd><p>Compact empty folders trees into a single item</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.hideDotFiles"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.hideDotFiles"><code class="option">vim.filetree.nvimTreeLua.hideDotFiles</code></a></span></dt><dd><p>Hide dotfiles</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.hideFiles"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.hideFiles"><code class="option">vim.filetree.nvimTreeLua.hideFiles</code></a></span></dt><dd><p>Files to hide in the file view by default.</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">[
"node_modules"
".cache"
]</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.hijackCursor"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.hijackCursor"><code class="option">vim.filetree.nvimTreeLua.hijackCursor</code></a></span></dt><dd><p>Hijack the cursor in the tree to put it at the start of the filename</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.hijackNetRW"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.hijackNetRW"><code class="option">vim.filetree.nvimTreeLua.hijackNetRW</code></a></span></dt><dd><p>Prevents netrw from automatically opening when opening directories</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.hijackUnnamedBufferWhenOpening"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.hijackUnnamedBufferWhenOpening"><code class="option">vim.filetree.nvimTreeLua.hijackUnnamedBufferWhenOpening</code></a></span></dt><dd><p>Open nvimtree in place of the unnamed buffer if it's empty.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.ignoreFileTypes"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.ignoreFileTypes"><code class="option">vim.filetree.nvimTreeLua.ignoreFileTypes</code></a></span></dt><dd><p>Ignore file types</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.ignore_ft_on_setup"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.ignore_ft_on_setup"><code class="option">vim.filetree.nvimTreeLua.ignore_ft_on_setup</code></a></span></dt><dd><p>Ignore file types on setup</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.indentMarkers"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.indentMarkers"><code class="option">vim.filetree.nvimTreeLua.indentMarkers</code></a></span></dt><dd><p>Show indent markers</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.lspDiagnostics"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.lspDiagnostics"><code class="option">vim.filetree.nvimTreeLua.lspDiagnostics</code></a></span></dt><dd><p>Shows lsp diagnostics in the tree</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.mappings.findFile"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.mappings.findFile"><code class="option">vim.filetree.nvimTreeLua.mappings.findFile</code></a></span></dt><dd><p>Find file in NvimTree</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;tg"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.mappings.focus"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.mappings.focus"><code class="option">vim.filetree.nvimTreeLua.mappings.focus</code></a></span></dt><dd><p>Focus NvimTree</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;tf"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.mappings.refresh"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.mappings.refresh"><code class="option">vim.filetree.nvimTreeLua.mappings.refresh</code></a></span></dt><dd><p>Refresh NvimTree</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;tr"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.mappings.toggle"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.mappings.toggle"><code class="option">vim.filetree.nvimTreeLua.mappings.toggle</code></a></span></dt><dd><p>Toggle NvimTree</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;C-n&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.openOnSetup"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.openOnSetup"><code class="option">vim.filetree.nvimTreeLua.openOnSetup</code></a></span></dt><dd><p>Open when vim is started on a directory</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.openTreeOnNewTab"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.openTreeOnNewTab"><code class="option">vim.filetree.nvimTreeLua.openTreeOnNewTab</code></a></span></dt><dd><p>Opens the tree view when opening a new tab</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.groupEmptyFolders"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.groupEmptyFolders"><code class="option">vim.filetree.nvimTreeLua.renderer.groupEmptyFolders</code></a></span></dt><dd><p>Compact empty folders trees into a single item</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.highlightOpenedFiles"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.highlightOpenedFiles"><code class="option">vim.filetree.nvimTreeLua.renderer.highlightOpenedFiles</code></a></span></dt><dd><p>Highlight opened files</p><p><span class="emphasis"><em>Type:</em></span> one of "none", "icon", "name", "all"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"none"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.higlightGit"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.higlightGit"><code class="option">vim.filetree.nvimTreeLua.renderer.higlightGit</code></a></span></dt><dd><p>Highlight git related files</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.default"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.default"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.default</code></a></span></dt><dd><p>Default icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.arrowClosed"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.arrowClosed"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.arrowClosed</code></a></span></dt><dd><p>Closed folder arrow icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.arrowOpen"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.arrowOpen"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.arrowOpen</code></a></span></dt><dd><p>Open folder arrow icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.default"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.default"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.default</code></a></span></dt><dd><p>Default folder icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.empty"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.empty"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.empty</code></a></span></dt><dd><p>Empty folder icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.emptyOpen"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.emptyOpen"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.emptyOpen</code></a></span></dt><dd><p>Empty open folder icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.open"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.open"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.open</code></a></span></dt><dd><p>Open folder icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.symlink"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.symlink"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.symlink</code></a></span></dt><dd><p>Symlink folder icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.symlinkOpen"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.symlinkOpen"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.folder.symlinkOpen</code></a></span></dt><dd><p>Symlink open folder icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.deleted"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.deleted"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.deleted</code></a></span></dt><dd><p>Deleted git icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.ignored"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.ignored"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.ignored</code></a></span></dt><dd><p>Ignored git icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"◌"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.renamed"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.renamed"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.renamed</code></a></span></dt><dd><p>Renamed git icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"➜"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.staged"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.staged"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.staged</code></a></span></dt><dd><p>Staged git icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"✓"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.unmerged"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.unmerged"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.unmerged</code></a></span></dt><dd><p>Unmerged git icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.unstaged"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.unstaged"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.unstaged</code></a></span></dt><dd><p>Unstaged git icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"✗"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.untracked"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.untracked"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.git.untracked</code></a></span></dt><dd><p>Untracked git icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"★"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.symlink"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.glyphs.symlink"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.glyphs.symlink</code></a></span></dt><dd><p>Symlink icon</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.show.file"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.show.file"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.show.file</code></a></span></dt><dd><p>Show file icons</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.show.folder"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.show.folder"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.show.folder</code></a></span></dt><dd><p>Show folder icons</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.show.folderArrow"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.show.folderArrow"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.show.folderArrow</code></a></span></dt><dd><p>Show folder arrow icons</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.icons.show.git"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.icons.show.git"><code class="option">vim.filetree.nvimTreeLua.renderer.icons.show.git</code></a></span></dt><dd><p>Show git icons</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.indentMarkers"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.indentMarkers"><code class="option">vim.filetree.nvimTreeLua.renderer.indentMarkers</code></a></span></dt><dd><p>Show indent markers</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.rootFolderLabel"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.rootFolderLabel"><code class="option">vim.filetree.nvimTreeLua.renderer.rootFolderLabel</code></a></span></dt><dd><p>Root folder label. Set null to disable</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.showHiddenFiles"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.showHiddenFiles"><code class="option">vim.filetree.nvimTreeLua.renderer.showHiddenFiles</code></a></span></dt><dd><p>Show hidden files</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.showParentFolder"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.showParentFolder"><code class="option">vim.filetree.nvimTreeLua.renderer.showParentFolder</code></a></span></dt><dd><p>Show parent folder</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.renderer.trailingSlash"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.renderer.trailingSlash"><code class="option">vim.filetree.nvimTreeLua.renderer.trailingSlash</code></a></span></dt><dd><p>Add a trailing slash to all folders</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.sortBy"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.sortBy"><code class="option">vim.filetree.nvimTreeLua.sortBy</code></a></span></dt><dd><p>Sort by name or extension</p><p><span class="emphasis"><em>Type:</em></span> one of "name", "extension", "modification_time", "case_sensitive"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"name"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.syncRootWithCwd"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.syncRootWithCwd"><code class="option">vim.filetree.nvimTreeLua.syncRootWithCwd</code></a></span></dt><dd><p>Changes the tree root directory on `DirChanged` and refreshes the tree</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.systemOpenCmd"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.systemOpenCmd"><code class="option">vim.filetree.nvimTreeLua.systemOpenCmd</code></a></span></dt><dd><p>The command used to open a file with the associated default program</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"\${pkgs.xdg-utils}/bin/xdg-open"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.trailingSlash"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.trailingSlash"><code class="option">vim.filetree.nvimTreeLua.trailingSlash</code></a></span></dt><dd><p>Add a trailing slash to all folders</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.updateCwd"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.updateCwd"><code class="option">vim.filetree.nvimTreeLua.updateCwd</code></a></span></dt><dd><p>Updates the tree when changing nvim's directory (DirChanged event).</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.updateFocusedFile"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.updateFocusedFile"><code class="option">vim.filetree.nvimTreeLua.updateFocusedFile</code></a></span></dt><dd><p>Updates the tree when changing nvim's directory (DirChanged event).</p><p><span class="emphasis"><em>Type:</em></span> attribute set of (boolean or attribute set of boolean)</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">{
enable = true;
update_cwd = true;
}</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.view.adaptiveSize"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.view.adaptiveSize"><code class="option">vim.filetree.nvimTreeLua.view.adaptiveSize</code></a></span></dt><dd><p>Resize the tree when the window is resized</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.view.cursorline"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.view.cursorline"><code class="option">vim.filetree.nvimTreeLua.view.cursorline</code></a></span></dt><dd><p>Whether to display the cursor line in NvimTree</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.view.side"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.view.side"><code class="option">vim.filetree.nvimTreeLua.view.side</code></a></span></dt><dd><p>Side the tree will appear on left or right</p><p><span class="emphasis"><em>Type:</em></span> one of "left", "right"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"left"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.filetree.nvimTreeLua.view.width"></a><a class="term" href="options.html#opt-vim.filetree.nvimTreeLua.view.width"><code class="option">vim.filetree.nvimTreeLua.view.width</code></a></span></dt><dd><p>Width of the tree in charecters</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">35</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/filetree/nvimtree-lua/nvimtree-lua.nix#blob-path" target="_top">
&lt;neovim-flake/modules/filetree/nvimtree-lua/nvimtree-lua.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.gestures.gesture-nvim.enable"></a><a class="term" href="options.html#opt-vim.gestures.gesture-nvim.enable"><code class="option">vim.gestures.gesture-nvim.enable</code></a></span></dt><dd><p>Whether to enable gesture-nvim: mouse gestures.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/gestures/gesture-nvim/gesture-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/gestures/gesture-nvim/gesture-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.gestures.gesture-nvim.mappings.draw"></a><a class="term" href="options.html#opt-vim.gestures.gesture-nvim.mappings.draw"><code class="option">vim.gestures.gesture-nvim.mappings.draw</code></a></span></dt><dd><p>Start drawing [gesture.nvim]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;LeftDrag&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/gestures/gesture-nvim/gesture-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/gestures/gesture-nvim/gesture-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.gestures.gesture-nvim.mappings.finish"></a><a class="term" href="options.html#opt-vim.gestures.gesture-nvim.mappings.finish"><code class="option">vim.gestures.gesture-nvim.mappings.finish</code></a></span></dt><dd><p>Finish drawing [gesture.nvim]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;LeftRelease&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/gestures/gesture-nvim/gesture-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/gestures/gesture-nvim/gesture-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.git.enable"></a><a class="term" href="options.html#opt-vim.git.enable"><code class="option">vim.git.enable</code></a></span></dt><dd><p>Whether to enable git tools via gitsigns.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/git/git.nix#blob-path" target="_top">
&lt;neovim-flake/modules/git/git.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.git.gitsigns.enable"></a><a class="term" href="options.html#opt-vim.git.gitsigns.enable"><code class="option">vim.git.gitsigns.enable</code></a></span></dt><dd><p>Whether to enable gitsigns.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/git/git.nix#blob-path" target="_top">
&lt;neovim-flake/modules/git/git.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.git.gitsigns.codeActions"></a><a class="term" href="options.html#opt-vim.git.gitsigns.codeActions"><code class="option">vim.git.gitsigns.codeActions</code></a></span></dt><dd><p>Whether to enable gitsigns codeactions through null-ls.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/git/git.nix#blob-path" target="_top">
&lt;neovim-flake/modules/git/git.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.git.gitsigns.mappings.blameLine"></a><a class="term" href="options.html#opt-vim.git.gitsigns.mappings.blameLine"><code class="option">vim.git.gitsigns.mappings.blameLine</code></a></span></dt><dd><p>Blame line [Gitsigns]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;hb"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/git/git.nix#blob-path" target="_top">
&lt;neovim-flake/modules/git/git.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.git.gitsigns.mappings.diffProject"></a><a class="term" href="options.html#opt-vim.git.gitsigns.mappings.diffProject"><code class="option">vim.git.gitsigns.mappings.diffProject</code></a></span></dt><dd><p>Diff project [Gitsigns]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;hD"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/git/git.nix#blob-path" target="_top">
&lt;neovim-flake/modules/git/git.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.git.gitsigns.mappings.diffThis"></a><a class="term" href="options.html#opt-vim.git.gitsigns.mappings.diffThis"><code class="option">vim.git.gitsigns.mappings.diffThis</code></a></span></dt><dd><p>Diff this [Gitsigns]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;hd"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/git/git.nix#blob-path" target="_top">
&lt;neovim-flake/modules/git/git.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.git.gitsigns.mappings.nextHunk"></a><a class="term" href="options.html#opt-vim.git.gitsigns.mappings.nextHunk"><code class="option">vim.git.gitsigns.mappings.nextHunk</code></a></span></dt><dd><p>Next hunk [Gitsigns]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"]c"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/git/git.nix#blob-path" target="_top">
&lt;neovim-flake/modules/git/git.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.git.gitsigns.mappings.previewHunk"></a><a class="term" href="options.html#opt-vim.git.gitsigns.mappings.previewHunk"><code class="option">vim.git.gitsigns.mappings.previewHunk</code></a></span></dt><dd><p>Preview hunk [Gitsigns]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;hP"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/git/git.nix#blob-path" target="_top">
&lt;neovim-flake/modules/git/git.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.git.gitsigns.mappings.previousHunk"></a><a class="term" href="options.html#opt-vim.git.gitsigns.mappings.previousHunk"><code class="option">vim.git.gitsigns.mappings.previousHunk</code></a></span></dt><dd><p>Previous hunk [Gitsigns]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"[c"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/git/git.nix#blob-path" target="_top">
&lt;neovim-flake/modules/git/git.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.git.gitsigns.mappings.resetBuffer"></a><a class="term" href="options.html#opt-vim.git.gitsigns.mappings.resetBuffer"><code class="option">vim.git.gitsigns.mappings.resetBuffer</code></a></span></dt><dd><p>Reset buffer [Gitsigns]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;hR"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/git/git.nix#blob-path" target="_top">
&lt;neovim-flake/modules/git/git.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.git.gitsigns.mappings.resetHunk"></a><a class="term" href="options.html#opt-vim.git.gitsigns.mappings.resetHunk"><code class="option">vim.git.gitsigns.mappings.resetHunk</code></a></span></dt><dd><p>Reset hunk [Gitsigns]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;hr"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/git/git.nix#blob-path" target="_top">
&lt;neovim-flake/modules/git/git.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.git.gitsigns.mappings.stageBuffer"></a><a class="term" href="options.html#opt-vim.git.gitsigns.mappings.stageBuffer"><code class="option">vim.git.gitsigns.mappings.stageBuffer</code></a></span></dt><dd><p>Stage buffer [Gitsigns]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;hS"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/git/git.nix#blob-path" target="_top">
&lt;neovim-flake/modules/git/git.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.git.gitsigns.mappings.stageHunk"></a><a class="term" href="options.html#opt-vim.git.gitsigns.mappings.stageHunk"><code class="option">vim.git.gitsigns.mappings.stageHunk</code></a></span></dt><dd><p>Stage hunk [Gitsigns]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;hs"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/git/git.nix#blob-path" target="_top">
&lt;neovim-flake/modules/git/git.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.git.gitsigns.mappings.toggleBlame"></a><a class="term" href="options.html#opt-vim.git.gitsigns.mappings.toggleBlame"><code class="option">vim.git.gitsigns.mappings.toggleBlame</code></a></span></dt><dd><p>Toggle blame [Gitsigns]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;tb"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/git/git.nix#blob-path" target="_top">
&lt;neovim-flake/modules/git/git.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.git.gitsigns.mappings.toggleDeleted"></a><a class="term" href="options.html#opt-vim.git.gitsigns.mappings.toggleDeleted"><code class="option">vim.git.gitsigns.mappings.toggleDeleted</code></a></span></dt><dd><p>Toggle deleted [Gitsigns]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;td"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/git/git.nix#blob-path" target="_top">
&lt;neovim-flake/modules/git/git.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.git.gitsigns.mappings.undoStageHunk"></a><a class="term" href="options.html#opt-vim.git.gitsigns.mappings.undoStageHunk"><code class="option">vim.git.gitsigns.mappings.undoStageHunk</code></a></span></dt><dd><p>Undo stage hunk [Gitsigns]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;hu"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/git/git.nix#blob-path" target="_top">
&lt;neovim-flake/modules/git/git.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.globals"></a><a class="term" href="options.html#opt-vim.globals"><code class="option">vim.globals</code></a></span></dt><dd><p>Set containing global variable values</p><p><span class="emphasis"><em>Type:</em></span> attribute set</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.hideSearchHighlight"></a><a class="term" href="options.html#opt-vim.hideSearchHighlight"><code class="option">vim.hideSearchHighlight</code></a></span></dt><dd><p>Hide search highlight so it doesn't stay highlighted</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.enableDAP"></a><a class="term" href="options.html#opt-vim.languages.enableDAP"><code class="option">vim.languages.enableDAP</code></a></span></dt><dd><p>Turn on Debug Adapter for enabled languages by default</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages#blob-path" target="_top">
&lt;neovim-flake/modules/languages&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.enableExtraDiagnostics"></a><a class="term" href="options.html#opt-vim.languages.enableExtraDiagnostics"><code class="option">vim.languages.enableExtraDiagnostics</code></a></span></dt><dd><p>Turn on extra diagnostics for enabled languages by default</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages#blob-path" target="_top">
&lt;neovim-flake/modules/languages&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.enableFormat"></a><a class="term" href="options.html#opt-vim.languages.enableFormat"><code class="option">vim.languages.enableFormat</code></a></span></dt><dd><p>Turn on formatting for enabled languages by default</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages#blob-path" target="_top">
&lt;neovim-flake/modules/languages&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.enableLSP"></a><a class="term" href="options.html#opt-vim.languages.enableLSP"><code class="option">vim.languages.enableLSP</code></a></span></dt><dd><p>Turn on LSP for enabled languages by default</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages#blob-path" target="_top">
&lt;neovim-flake/modules/languages&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.enableTreesitter"></a><a class="term" href="options.html#opt-vim.languages.enableTreesitter"><code class="option">vim.languages.enableTreesitter</code></a></span></dt><dd><p>Turn on treesitter for enabled languages by default</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages#blob-path" target="_top">
&lt;neovim-flake/modules/languages&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.clang.enable"></a><a class="term" href="options.html#opt-vim.languages.clang.enable"><code class="option">vim.languages.clang.enable</code></a></span></dt><dd><p>Whether to enable C/C++ language support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/clang.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/clang.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.clang.cHeader"></a><a class="term" href="options.html#opt-vim.languages.clang.cHeader"><code class="option">vim.languages.clang.cHeader</code></a></span></dt><dd><p>C syntax for headers. Can fix treesitter errors, see:
https://www.reddit.com/r/neovim/comments/orfpcd/question_does_the_c_parser_from_nvimtreesitter/</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/clang.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/clang.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.clang.dap.enable"></a><a class="term" href="options.html#opt-vim.languages.clang.dap.enable"><code class="option">vim.languages.clang.dap.enable</code></a></span></dt><dd><p>Enable clang Debug Adapter</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/clang.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/clang.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.clang.dap.package"></a><a class="term" href="options.html#opt-vim.languages.clang.dap.package"><code class="option">vim.languages.clang.dap.package</code></a></span></dt><dd><p>clang debugger package.</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation lldb-14.0.6&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/clang.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/clang.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.clang.dap.debugger"></a><a class="term" href="options.html#opt-vim.languages.clang.dap.debugger"><code class="option">vim.languages.clang.dap.debugger</code></a></span></dt><dd><p>clang debugger to use</p><p><span class="emphasis"><em>Type:</em></span> value "lldb-vscode" (singular enum)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"lldb-vscode"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/clang.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/clang.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.clang.lsp.enable"></a><a class="term" href="options.html#opt-vim.languages.clang.lsp.enable"><code class="option">vim.languages.clang.lsp.enable</code></a></span></dt><dd><p>Whether to enable Enable clang LSP support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/clang.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/clang.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.clang.lsp.package"></a><a class="term" href="options.html#opt-vim.languages.clang.lsp.package"><code class="option">vim.languages.clang.lsp.package</code></a></span></dt><dd><p>clang LSP server package</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation ccls-0.20220729&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/clang.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/clang.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.clang.lsp.opts"></a><a class="term" href="options.html#opt-vim.languages.clang.lsp.opts"><code class="option">vim.languages.clang.lsp.opts</code></a></span></dt><dd><p>Options to pass to clang LSP server</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/clang.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/clang.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.clang.lsp.server"></a><a class="term" href="options.html#opt-vim.languages.clang.lsp.server"><code class="option">vim.languages.clang.lsp.server</code></a></span></dt><dd><p>The clang LSP server to use</p><p><span class="emphasis"><em>Type:</em></span> one of "ccls", "clangd"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"ccls"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/clang.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/clang.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.clang.treesitter.enable"></a><a class="term" href="options.html#opt-vim.languages.clang.treesitter.enable"><code class="option">vim.languages.clang.treesitter.enable</code></a></span></dt><dd><p>Whether to enable C/C++ treesitter.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/clang.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/clang.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.clang.treesitter.cPackage"></a><a class="term" href="options.html#opt-vim.languages.clang.treesitter.cPackage"><code class="option">vim.languages.clang.treesitter.cPackage</code></a></span></dt><dd><p>The c treesitter package to use.</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">pkgs.vimPlugins.nvim-treesitter.builtGrammars.c</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/clang.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/clang.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.clang.treesitter.cppPackage"></a><a class="term" href="options.html#opt-vim.languages.clang.treesitter.cppPackage"><code class="option">vim.languages.clang.treesitter.cppPackage</code></a></span></dt><dd><p>The cpp treesitter package to use.</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">pkgs.vimPlugins.nvim-treesitter.builtGrammars.cpp</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/clang.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/clang.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.dart.enable"></a><a class="term" href="options.html#opt-vim.languages.dart.enable"><code class="option">vim.languages.dart.enable</code></a></span></dt><dd><p>Whether to enable Dart language support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/dart/dart.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/dart/dart.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.dart.dap.enable"></a><a class="term" href="options.html#opt-vim.languages.dart.dap.enable"><code class="option">vim.languages.dart.dap.enable</code></a></span></dt><dd><p>Enable Dart DAP support via flutter-tools</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/dart/dart.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/dart/dart.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.dart.flutter-tools.enable"></a><a class="term" href="options.html#opt-vim.languages.dart.flutter-tools.enable"><code class="option">vim.languages.dart.flutter-tools.enable</code></a></span></dt><dd><p>Enable flutter-tools for flutter support</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/dart/dart.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/dart/dart.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.dart.flutter-tools.enableNoResolvePatch"></a><a class="term" href="options.html#opt-vim.languages.dart.flutter-tools.enableNoResolvePatch"><code class="option">vim.languages.dart.flutter-tools.enableNoResolvePatch</code></a></span></dt><dd><p>Patch flutter-tools so that it doesn't resolve symlinks when detecting flutter path.
This is required if you want to use a flutter package built with nix.
If you are using a flutter SDK installed from a different source and encounter the error "`dart` missing from PATH", disable this option.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/dart/dart.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/dart/dart.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.dart.flutter-tools.color.enable"></a><a class="term" href="options.html#opt-vim.languages.dart.flutter-tools.color.enable"><code class="option">vim.languages.dart.flutter-tools.color.enable</code></a></span></dt><dd><p>Whether to enable Whether or mot to highlight color variables at all.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/dart/dart.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/dart/dart.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.dart.flutter-tools.color.highlightBackground"></a><a class="term" href="options.html#opt-vim.languages.dart.flutter-tools.color.highlightBackground"><code class="option">vim.languages.dart.flutter-tools.color.highlightBackground</code></a></span></dt><dd><p>Highlight the background</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/dart/dart.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/dart/dart.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.dart.flutter-tools.color.highlightForeground"></a><a class="term" href="options.html#opt-vim.languages.dart.flutter-tools.color.highlightForeground"><code class="option">vim.languages.dart.flutter-tools.color.highlightForeground</code></a></span></dt><dd><p>Highlight the foreground</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/dart/dart.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/dart/dart.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.dart.flutter-tools.color.virtualText.enable"></a><a class="term" href="options.html#opt-vim.languages.dart.flutter-tools.color.virtualText.enable"><code class="option">vim.languages.dart.flutter-tools.color.virtualText.enable</code></a></span></dt><dd><p>Whether to enable Show the highlight using virtual text.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/dart/dart.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/dart/dart.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.dart.flutter-tools.color.virtualText.character"></a><a class="term" href="options.html#opt-vim.languages.dart.flutter-tools.color.virtualText.character"><code class="option">vim.languages.dart.flutter-tools.color.virtualText.character</code></a></span></dt><dd><p>Virtual text character to highlight</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"■"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/dart/dart.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/dart/dart.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.dart.lsp.enable"></a><a class="term" href="options.html#opt-vim.languages.dart.lsp.enable"><code class="option">vim.languages.dart.lsp.enable</code></a></span></dt><dd><p>Whether to enable Dart LSP support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/dart/dart.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/dart/dart.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.dart.lsp.package"></a><a class="term" href="options.html#opt-vim.languages.dart.lsp.package"><code class="option">vim.languages.dart.lsp.package</code></a></span></dt><dd><p>Dart LSP server package</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation dart-3.0.5&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/dart/dart.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/dart/dart.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.dart.lsp.opts"></a><a class="term" href="options.html#opt-vim.languages.dart.lsp.opts"><code class="option">vim.languages.dart.lsp.opts</code></a></span></dt><dd><p>Options to pass to Dart LSP server</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/dart/dart.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/dart/dart.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.dart.lsp.server"></a><a class="term" href="options.html#opt-vim.languages.dart.lsp.server"><code class="option">vim.languages.dart.lsp.server</code></a></span></dt><dd><p>The Dart LSP server to use</p><p><span class="emphasis"><em>Type:</em></span> value "dart" (singular enum)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"dart"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/dart/dart.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/dart/dart.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.dart.treesitter.enable"></a><a class="term" href="options.html#opt-vim.languages.dart.treesitter.enable"><code class="option">vim.languages.dart.treesitter.enable</code></a></span></dt><dd><p>Whether to enable Enable Dart treesitter.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/dart/dart.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/dart/dart.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.dart.treesitter.package"></a><a class="term" href="options.html#opt-vim.languages.dart.treesitter.package"><code class="option">vim.languages.dart.treesitter.package</code></a></span></dt><dd><p>The dart treesitter package to use.</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">pkgs.vimPlugins.nvim-treesitter.builtGrammars.dart</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/dart/dart.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/dart/dart.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.elixir.enable"></a><a class="term" href="options.html#opt-vim.languages.elixir.enable"><code class="option">vim.languages.elixir.enable</code></a></span></dt><dd><p>Whether to enable Elixir language support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/elixir/elixir-tools.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/elixir/elixir-tools.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.go.enable"></a><a class="term" href="options.html#opt-vim.languages.go.enable"><code class="option">vim.languages.go.enable</code></a></span></dt><dd><p>Whether to enable Go language support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/go.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/go.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.go.dap.enable"></a><a class="term" href="options.html#opt-vim.languages.go.dap.enable"><code class="option">vim.languages.go.dap.enable</code></a></span></dt><dd><p>Enable Go Debug Adapter</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/go.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/go.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.go.dap.package"></a><a class="term" href="options.html#opt-vim.languages.go.dap.package"><code class="option">vim.languages.go.dap.package</code></a></span></dt><dd><p>Go debugger package.</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation delve-1.21.0&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/go.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/go.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.go.dap.debugger"></a><a class="term" href="options.html#opt-vim.languages.go.dap.debugger"><code class="option">vim.languages.go.dap.debugger</code></a></span></dt><dd><p>Go debugger to use</p><p><span class="emphasis"><em>Type:</em></span> value "delve" (singular enum)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"delve"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/go.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/go.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.go.lsp.enable"></a><a class="term" href="options.html#opt-vim.languages.go.lsp.enable"><code class="option">vim.languages.go.lsp.enable</code></a></span></dt><dd><p>Whether to enable Enable Go LSP support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/go.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/go.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.go.lsp.package"></a><a class="term" href="options.html#opt-vim.languages.go.lsp.package"><code class="option">vim.languages.go.lsp.package</code></a></span></dt><dd><p>Go LSP server package</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation gopls-0.12.4&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/go.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/go.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.go.lsp.server"></a><a class="term" href="options.html#opt-vim.languages.go.lsp.server"><code class="option">vim.languages.go.lsp.server</code></a></span></dt><dd><p>Go LSP server to use</p><p><span class="emphasis"><em>Type:</em></span> value "gopls" (singular enum)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"gopls"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/go.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/go.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.go.treesitter.enable"></a><a class="term" href="options.html#opt-vim.languages.go.treesitter.enable"><code class="option">vim.languages.go.treesitter.enable</code></a></span></dt><dd><p>Whether to enable Enable Go treesitter.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/go.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/go.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.go.treesitter.package"></a><a class="term" href="options.html#opt-vim.languages.go.treesitter.package"><code class="option">vim.languages.go.treesitter.package</code></a></span></dt><dd><p>The go treesitter package to use.</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">pkgs.vimPlugins.nvim-treesitter.builtGrammars.go</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/go.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/go.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.html.enable"></a><a class="term" href="options.html#opt-vim.languages.html.enable"><code class="option">vim.languages.html.enable</code></a></span></dt><dd><p>Whether to enable HTML language support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/html.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/html.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.html.treesitter.enable"></a><a class="term" href="options.html#opt-vim.languages.html.treesitter.enable"><code class="option">vim.languages.html.treesitter.enable</code></a></span></dt><dd><p>Enable HTML treesitter</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/html.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/html.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.html.treesitter.package"></a><a class="term" href="options.html#opt-vim.languages.html.treesitter.package"><code class="option">vim.languages.html.treesitter.package</code></a></span></dt><dd><p>The html treesitter package to use.</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">pkgs.vimPlugins.nvim-treesitter.builtGrammars.html</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/html.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/html.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.html.treesitter.autotagHtml"></a><a class="term" href="options.html#opt-vim.languages.html.treesitter.autotagHtml"><code class="option">vim.languages.html.treesitter.autotagHtml</code></a></span></dt><dd><p>Enable autoclose/autorename of html tags (nvim-ts-autotag)</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/html.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/html.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.markdown.enable"></a><a class="term" href="options.html#opt-vim.languages.markdown.enable"><code class="option">vim.languages.markdown.enable</code></a></span></dt><dd><p>Whether to enable Markdown markup language support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/markdown/markdown.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/markdown/markdown.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.markdown.glow.enable"></a><a class="term" href="options.html#opt-vim.languages.markdown.glow.enable"><code class="option">vim.languages.markdown.glow.enable</code></a></span></dt><dd><p>Enable markdown preview in neovim with glow</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/markdown/markdown.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/markdown/markdown.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.markdown.treesitter.enable"></a><a class="term" href="options.html#opt-vim.languages.markdown.treesitter.enable"><code class="option">vim.languages.markdown.treesitter.enable</code></a></span></dt><dd><p>Enable Markdown treesitter</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/markdown/markdown.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/markdown/markdown.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.markdown.treesitter.mdInlinePackage"></a><a class="term" href="options.html#opt-vim.languages.markdown.treesitter.mdInlinePackage"><code class="option">vim.languages.markdown.treesitter.mdInlinePackage</code></a></span></dt><dd><p>The markdown-inline treesitter package to use.</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">pkgs.vimPlugins.nvim-treesitter.builtGrammars.markdown-inline</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/markdown/markdown.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/markdown/markdown.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.markdown.treesitter.mdPackage"></a><a class="term" href="options.html#opt-vim.languages.markdown.treesitter.mdPackage"><code class="option">vim.languages.markdown.treesitter.mdPackage</code></a></span></dt><dd><p>The markdown treesitter package to use.</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">pkgs.vimPlugins.nvim-treesitter.builtGrammars.markdown</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/markdown/markdown.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/markdown/markdown.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.nix.enable"></a><a class="term" href="options.html#opt-vim.languages.nix.enable"><code class="option">vim.languages.nix.enable</code></a></span></dt><dd><p>Whether to enable Nix language support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/nix.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/nix.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.nix.format.enable"></a><a class="term" href="options.html#opt-vim.languages.nix.format.enable"><code class="option">vim.languages.nix.format.enable</code></a></span></dt><dd><p>Whether to enable Enable Nix formatting.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/nix.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/nix.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.nix.format.package"></a><a class="term" href="options.html#opt-vim.languages.nix.format.package"><code class="option">vim.languages.nix.format.package</code></a></span></dt><dd><p>Nix formatter package</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation alejandra-3.0.0&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/nix.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/nix.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.nix.format.type"></a><a class="term" href="options.html#opt-vim.languages.nix.format.type"><code class="option">vim.languages.nix.format.type</code></a></span></dt><dd><p>Nix formatter to use</p><p><span class="emphasis"><em>Type:</em></span> one of "alejandra", "nixpkgs-fmt"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"alejandra"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/nix.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/nix.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.nix.lsp.enable"></a><a class="term" href="options.html#opt-vim.languages.nix.lsp.enable"><code class="option">vim.languages.nix.lsp.enable</code></a></span></dt><dd><p>Whether to enable Enable Nix LSP support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/nix.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/nix.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.nix.lsp.package"></a><a class="term" href="options.html#opt-vim.languages.nix.lsp.package"><code class="option">vim.languages.nix.lsp.package</code></a></span></dt><dd><p>Nix LSP server package</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation nil-2023-05-09&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/nix.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/nix.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.nix.lsp.server"></a><a class="term" href="options.html#opt-vim.languages.nix.lsp.server"><code class="option">vim.languages.nix.lsp.server</code></a></span></dt><dd><p>Nix LSP server to use</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"nil"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/nix.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/nix.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.nix.treesitter.enable"></a><a class="term" href="options.html#opt-vim.languages.nix.treesitter.enable"><code class="option">vim.languages.nix.treesitter.enable</code></a></span></dt><dd><p>Enable Nix treesitter</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/nix.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/nix.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.nix.treesitter.package"></a><a class="term" href="options.html#opt-vim.languages.nix.treesitter.package"><code class="option">vim.languages.nix.treesitter.package</code></a></span></dt><dd><p>The nix treesitter package to use.</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">pkgs.vimPlugins.nvim-treesitter.builtGrammars.nix</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/nix.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/nix.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.python.enable"></a><a class="term" href="options.html#opt-vim.languages.python.enable"><code class="option">vim.languages.python.enable</code></a></span></dt><dd><p>Whether to enable Python language support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/python.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/python.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.python.dap.enable"></a><a class="term" href="options.html#opt-vim.languages.python.dap.enable"><code class="option">vim.languages.python.dap.enable</code></a></span></dt><dd><p>Enable Python Debug Adapter</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/python.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/python.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.python.dap.package"></a><a class="term" href="options.html#opt-vim.languages.python.dap.package"><code class="option">vim.languages.python.dap.package</code></a></span></dt><dd><p>Python debugger package.
This is a python package with debugpy installed, see https://nixos.wiki/wiki/Python#Install_Python_Packages.</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation python3-3.10.12-env&gt;</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">with pkgs; python39.withPackages (ps: with ps; [debugpy])</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/python.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/python.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.python.dap.debugger"></a><a class="term" href="options.html#opt-vim.languages.python.dap.debugger"><code class="option">vim.languages.python.dap.debugger</code></a></span></dt><dd><p>Python debugger to use</p><p><span class="emphasis"><em>Type:</em></span> value "debugpy" (singular enum)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"debugpy"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/python.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/python.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.python.format.enable"></a><a class="term" href="options.html#opt-vim.languages.python.format.enable"><code class="option">vim.languages.python.format.enable</code></a></span></dt><dd><p>Whether to enable Enable Python formatting.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/python.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/python.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.python.format.package"></a><a class="term" href="options.html#opt-vim.languages.python.format.package"><code class="option">vim.languages.python.format.package</code></a></span></dt><dd><p>Python formatter package</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation black-23.3.0&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/python.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/python.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.python.format.type"></a><a class="term" href="options.html#opt-vim.languages.python.format.type"><code class="option">vim.languages.python.format.type</code></a></span></dt><dd><p>Python formatter to use</p><p><span class="emphasis"><em>Type:</em></span> value "black" (singular enum)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"black"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/python.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/python.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.python.lsp.enable"></a><a class="term" href="options.html#opt-vim.languages.python.lsp.enable"><code class="option">vim.languages.python.lsp.enable</code></a></span></dt><dd><p>Whether to enable Enable Python LSP support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/python.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/python.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.python.lsp.package"></a><a class="term" href="options.html#opt-vim.languages.python.lsp.package"><code class="option">vim.languages.python.lsp.package</code></a></span></dt><dd><p>python LSP server package</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation pyright-1.1.316&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/python.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/python.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.python.lsp.server"></a><a class="term" href="options.html#opt-vim.languages.python.lsp.server"><code class="option">vim.languages.python.lsp.server</code></a></span></dt><dd><p>Python LSP server to use</p><p><span class="emphasis"><em>Type:</em></span> value "pyright" (singular enum)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"pyright"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/python.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/python.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.python.treesitter.enable"></a><a class="term" href="options.html#opt-vim.languages.python.treesitter.enable"><code class="option">vim.languages.python.treesitter.enable</code></a></span></dt><dd><p>Whether to enable Enable Python treesitter.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/python.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/python.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.python.treesitter.package"></a><a class="term" href="options.html#opt-vim.languages.python.treesitter.package"><code class="option">vim.languages.python.treesitter.package</code></a></span></dt><dd><p>Python treesitter grammar to use</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation python-grammar-0.0.0+rev=36f9e33&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/python.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/python.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.rust.enable"></a><a class="term" href="options.html#opt-vim.languages.rust.enable"><code class="option">vim.languages.rust.enable</code></a></span></dt><dd><p>Whether to enable Rust language support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/rust.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/rust.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.rust.crates.enable"></a><a class="term" href="options.html#opt-vim.languages.rust.crates.enable"><code class="option">vim.languages.rust.crates.enable</code></a></span></dt><dd><p>Whether to enable crates-nvim, tools for managing dependencies.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/rust.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/rust.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.rust.crates.codeActions"></a><a class="term" href="options.html#opt-vim.languages.rust.crates.codeActions"><code class="option">vim.languages.rust.crates.codeActions</code></a></span></dt><dd><p>Enable code actions through null-ls</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/rust.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/rust.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.rust.dap.enable"></a><a class="term" href="options.html#opt-vim.languages.rust.dap.enable"><code class="option">vim.languages.rust.dap.enable</code></a></span></dt><dd><p>Rust Debug Adapter support</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/rust.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/rust.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.rust.dap.package"></a><a class="term" href="options.html#opt-vim.languages.rust.dap.package"><code class="option">vim.languages.rust.dap.package</code></a></span></dt><dd><p>lldb pacakge</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation lldb-14.0.6&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/rust.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/rust.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.rust.lsp.enable"></a><a class="term" href="options.html#opt-vim.languages.rust.lsp.enable"><code class="option">vim.languages.rust.lsp.enable</code></a></span></dt><dd><p>Whether to enable Rust LSP support (rust-analyzer with extra tools).</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/rust.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/rust.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.rust.lsp.package"></a><a class="term" href="options.html#opt-vim.languages.rust.lsp.package"><code class="option">vim.languages.rust.lsp.package</code></a></span></dt><dd><p>rust-analyzer package</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation rust-analyzer-2023-07-03&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/rust.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/rust.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.rust.lsp.opts"></a><a class="term" href="options.html#opt-vim.languages.rust.lsp.opts"><code class="option">vim.languages.rust.lsp.opts</code></a></span></dt><dd><p>Options to pass to rust analyzer</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/rust.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/rust.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.rust.treesitter.enable"></a><a class="term" href="options.html#opt-vim.languages.rust.treesitter.enable"><code class="option">vim.languages.rust.treesitter.enable</code></a></span></dt><dd><p>Whether to enable Enable Rust treesitter.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/rust.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/rust.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.rust.treesitter.package"></a><a class="term" href="options.html#opt-vim.languages.rust.treesitter.package"><code class="option">vim.languages.rust.treesitter.package</code></a></span></dt><dd><p>The rust treesitter package to use.</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">pkgs.vimPlugins.nvim-treesitter.builtGrammars.rust</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/rust.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/rust.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.sql.enable"></a><a class="term" href="options.html#opt-vim.languages.sql.enable"><code class="option">vim.languages.sql.enable</code></a></span></dt><dd><p>Whether to enable SQL language support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/sql.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/sql.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.sql.dialect"></a><a class="term" href="options.html#opt-vim.languages.sql.dialect"><code class="option">vim.languages.sql.dialect</code></a></span></dt><dd><p>SQL dialect for sqlfluff (if used)</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"ansi"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/sql.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/sql.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.sql.extraDiagnostics.enable"></a><a class="term" href="options.html#opt-vim.languages.sql.extraDiagnostics.enable"><code class="option">vim.languages.sql.extraDiagnostics.enable</code></a></span></dt><dd><p>Whether to enable Enable extra SQL diagnostics.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/sql.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/sql.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.sql.extraDiagnostics.types"></a><a class="term" href="options.html#opt-vim.languages.sql.extraDiagnostics.types"><code class="option">vim.languages.sql.extraDiagnostics.types</code></a></span></dt><dd><p>List of SQL diagnostics to enable</p><p><span class="emphasis"><em>Type:</em></span> list of (value "sqlfluff" (singular enum) or (submodule))</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">[
"sqlfluff"
]</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/sql.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/sql.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.sql.format.enable"></a><a class="term" href="options.html#opt-vim.languages.sql.format.enable"><code class="option">vim.languages.sql.format.enable</code></a></span></dt><dd><p>Whether to enable Enable SQL formatting.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/sql.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/sql.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.sql.format.package"></a><a class="term" href="options.html#opt-vim.languages.sql.format.package"><code class="option">vim.languages.sql.format.package</code></a></span></dt><dd><p>SQL formatter package</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation sqlfluff-2.1.2&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/sql.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/sql.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.sql.format.type"></a><a class="term" href="options.html#opt-vim.languages.sql.format.type"><code class="option">vim.languages.sql.format.type</code></a></span></dt><dd><p>SQL formatter to use</p><p><span class="emphasis"><em>Type:</em></span> value "sqlfluff" (singular enum)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"sqlfluff"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/sql.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/sql.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.sql.lsp.enable"></a><a class="term" href="options.html#opt-vim.languages.sql.lsp.enable"><code class="option">vim.languages.sql.lsp.enable</code></a></span></dt><dd><p>Whether to enable Enable SQL LSP support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/sql.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/sql.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.sql.lsp.package"></a><a class="term" href="options.html#opt-vim.languages.sql.lsp.package"><code class="option">vim.languages.sql.lsp.package</code></a></span></dt><dd><p>SQL LSP server package</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation sqls-0.2.22&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/sql.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/sql.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.sql.lsp.server"></a><a class="term" href="options.html#opt-vim.languages.sql.lsp.server"><code class="option">vim.languages.sql.lsp.server</code></a></span></dt><dd><p>SQL LSP server to use</p><p><span class="emphasis"><em>Type:</em></span> value "sqls" (singular enum)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"sqls"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/sql.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/sql.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.sql.treesitter.enable"></a><a class="term" href="options.html#opt-vim.languages.sql.treesitter.enable"><code class="option">vim.languages.sql.treesitter.enable</code></a></span></dt><dd><p>Whether to enable Enable SQL treesitter.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/sql.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/sql.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.sql.treesitter.package"></a><a class="term" href="options.html#opt-vim.languages.sql.treesitter.package"><code class="option">vim.languages.sql.treesitter.package</code></a></span></dt><dd><p>SQL treesitter grammar to use</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation sql-grammar-0.0.0+rev=dd5fe77&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/sql.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/sql.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.svelte.enable"></a><a class="term" href="options.html#opt-vim.languages.svelte.enable"><code class="option">vim.languages.svelte.enable</code></a></span></dt><dd><p>Whether to enable Svelte language support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/svelte.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/svelte.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.svelte.extraDiagnostics.enable"></a><a class="term" href="options.html#opt-vim.languages.svelte.extraDiagnostics.enable"><code class="option">vim.languages.svelte.extraDiagnostics.enable</code></a></span></dt><dd><p>Whether to enable Enable extra Svelte diagnostics.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/svelte.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/svelte.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.svelte.extraDiagnostics.types"></a><a class="term" href="options.html#opt-vim.languages.svelte.extraDiagnostics.types"><code class="option">vim.languages.svelte.extraDiagnostics.types</code></a></span></dt><dd><p>List of Svelte diagnostics to enable</p><p><span class="emphasis"><em>Type:</em></span> list of (value "eslint_d" (singular enum) or (submodule))</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">[
"eslint_d"
]</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/svelte.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/svelte.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.svelte.format.enable"></a><a class="term" href="options.html#opt-vim.languages.svelte.format.enable"><code class="option">vim.languages.svelte.format.enable</code></a></span></dt><dd><p>Whether to enable Enable Svelte formatting.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/svelte.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/svelte.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.svelte.format.package"></a><a class="term" href="options.html#opt-vim.languages.svelte.format.package"><code class="option">vim.languages.svelte.format.package</code></a></span></dt><dd><p>Svelte formatter package</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation prettier-3.0.0&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/svelte.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/svelte.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.svelte.format.type"></a><a class="term" href="options.html#opt-vim.languages.svelte.format.type"><code class="option">vim.languages.svelte.format.type</code></a></span></dt><dd><p>Svelte formatter to use</p><p><span class="emphasis"><em>Type:</em></span> value "prettier" (singular enum)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"prettier"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/svelte.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/svelte.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.svelte.lsp.enable"></a><a class="term" href="options.html#opt-vim.languages.svelte.lsp.enable"><code class="option">vim.languages.svelte.lsp.enable</code></a></span></dt><dd><p>Whether to enable Enable Svelte LSP support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/svelte.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/svelte.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.svelte.lsp.package"></a><a class="term" href="options.html#opt-vim.languages.svelte.lsp.package"><code class="option">vim.languages.svelte.lsp.package</code></a></span></dt><dd><p>Svelte LSP server package</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation svelte-language-server-0.15.14&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/svelte.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/svelte.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.svelte.lsp.server"></a><a class="term" href="options.html#opt-vim.languages.svelte.lsp.server"><code class="option">vim.languages.svelte.lsp.server</code></a></span></dt><dd><p>Svelte LSP server to use</p><p><span class="emphasis"><em>Type:</em></span> value "svelte" (singular enum)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"svelte"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/svelte.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/svelte.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.svelte.treesitter.enable"></a><a class="term" href="options.html#opt-vim.languages.svelte.treesitter.enable"><code class="option">vim.languages.svelte.treesitter.enable</code></a></span></dt><dd><p>Whether to enable Enable Svelte treesitter.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/svelte.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/svelte.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.svelte.treesitter.sveltePackage"></a><a class="term" href="options.html#opt-vim.languages.svelte.treesitter.sveltePackage"><code class="option">vim.languages.svelte.treesitter.sveltePackage</code></a></span></dt><dd><p>The svelte treesitter package to use.</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">pkgs.vimPlugins.nvim-treesitter.builtGrammars.svelte</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/svelte.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/svelte.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.ts.enable"></a><a class="term" href="options.html#opt-vim.languages.ts.enable"><code class="option">vim.languages.ts.enable</code></a></span></dt><dd><p>Whether to enable Typescript/Javascript language support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/ts.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/ts.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.ts.extraDiagnostics.enable"></a><a class="term" href="options.html#opt-vim.languages.ts.extraDiagnostics.enable"><code class="option">vim.languages.ts.extraDiagnostics.enable</code></a></span></dt><dd><p>Whether to enable Enable extra Typescript/Javascript diagnostics.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/ts.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/ts.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.ts.extraDiagnostics.types"></a><a class="term" href="options.html#opt-vim.languages.ts.extraDiagnostics.types"><code class="option">vim.languages.ts.extraDiagnostics.types</code></a></span></dt><dd><p>List of Typescript/Javascript diagnostics to enable</p><p><span class="emphasis"><em>Type:</em></span> list of (value "eslint_d" (singular enum) or (submodule))</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">[
"eslint_d"
]</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/ts.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/ts.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.ts.format.enable"></a><a class="term" href="options.html#opt-vim.languages.ts.format.enable"><code class="option">vim.languages.ts.format.enable</code></a></span></dt><dd><p>Whether to enable Enable Typescript/Javascript formatting.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/ts.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/ts.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.ts.format.package"></a><a class="term" href="options.html#opt-vim.languages.ts.format.package"><code class="option">vim.languages.ts.format.package</code></a></span></dt><dd><p>Typescript/Javascript formatter package</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation prettier-3.0.0&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/ts.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/ts.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.ts.format.type"></a><a class="term" href="options.html#opt-vim.languages.ts.format.type"><code class="option">vim.languages.ts.format.type</code></a></span></dt><dd><p>Typescript/Javascript formatter to use</p><p><span class="emphasis"><em>Type:</em></span> one of "prettier", "prettierd"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"prettier"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/ts.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/ts.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.ts.lsp.enable"></a><a class="term" href="options.html#opt-vim.languages.ts.lsp.enable"><code class="option">vim.languages.ts.lsp.enable</code></a></span></dt><dd><p>Whether to enable Enable Typescript/Javascript LSP support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/ts.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/ts.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.ts.lsp.package"></a><a class="term" href="options.html#opt-vim.languages.ts.lsp.package"><code class="option">vim.languages.ts.lsp.package</code></a></span></dt><dd><p>Typescript/Javascript LSP server package</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation typescript-language-server-3.3.2&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/ts.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/ts.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.ts.lsp.server"></a><a class="term" href="options.html#opt-vim.languages.ts.lsp.server"><code class="option">vim.languages.ts.lsp.server</code></a></span></dt><dd><p>Typescript/Javascript LSP server to use</p><p><span class="emphasis"><em>Type:</em></span> value "tsserver" (singular enum)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"tsserver"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/ts.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/ts.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.ts.treesitter.enable"></a><a class="term" href="options.html#opt-vim.languages.ts.treesitter.enable"><code class="option">vim.languages.ts.treesitter.enable</code></a></span></dt><dd><p>Whether to enable Enable Typescript/Javascript treesitter.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/ts.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/ts.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.ts.treesitter.jsPackage"></a><a class="term" href="options.html#opt-vim.languages.ts.treesitter.jsPackage"><code class="option">vim.languages.ts.treesitter.jsPackage</code></a></span></dt><dd><p>The javascript treesitter package to use.</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">pkgs.vimPlugins.nvim-treesitter.builtGrammars.javascript</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/ts.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/ts.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.ts.treesitter.tsPackage"></a><a class="term" href="options.html#opt-vim.languages.ts.treesitter.tsPackage"><code class="option">vim.languages.ts.treesitter.tsPackage</code></a></span></dt><dd><p>The tsx treesitter package to use.</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">pkgs.vimPlugins.nvim-treesitter.builtGrammars.tsx</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/ts.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/ts.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.zig.enable"></a><a class="term" href="options.html#opt-vim.languages.zig.enable"><code class="option">vim.languages.zig.enable</code></a></span></dt><dd><p>Whether to enable SQL language support.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/zig.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/zig.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.zig.lsp.enable"></a><a class="term" href="options.html#opt-vim.languages.zig.lsp.enable"><code class="option">vim.languages.zig.lsp.enable</code></a></span></dt><dd><p>Whether to enable Zig LSP support (zls).</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/zig.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/zig.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.zig.lsp.package"></a><a class="term" href="options.html#opt-vim.languages.zig.lsp.package"><code class="option">vim.languages.zig.lsp.package</code></a></span></dt><dd><p>ZLS package</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation zls-0.10.0&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/zig.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/zig.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.zig.lsp.zigPackage"></a><a class="term" href="options.html#opt-vim.languages.zig.lsp.zigPackage"><code class="option">vim.languages.zig.lsp.zigPackage</code></a></span></dt><dd><p>Zig package used by ZLS</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation zig-0.10.1&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/zig.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/zig.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.zig.treesitter.enable"></a><a class="term" href="options.html#opt-vim.languages.zig.treesitter.enable"><code class="option">vim.languages.zig.treesitter.enable</code></a></span></dt><dd><p>Whether to enable Enable Zig treesitter.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/zig.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/zig.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.languages.zig.treesitter.package"></a><a class="term" href="options.html#opt-vim.languages.zig.treesitter.package"><code class="option">vim.languages.zig.treesitter.package</code></a></span></dt><dd><p>The zig treesitter package to use.</p><p><span class="emphasis"><em>Type:</em></span> package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">pkgs.vimPlugins.nvim-treesitter.builtGrammars.zig</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/zig.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/zig.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lineNumberMode"></a><a class="term" href="options.html#opt-vim.lineNumberMode"><code class="option">vim.lineNumberMode</code></a></span></dt><dd><p>How line numbers are displayed. none, relative, number, relNumber</p><p><span class="emphasis"><em>Type:</em></span> one of "relative", "number", "relNumber", "none"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"relNumber"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.enable"></a><a class="term" href="options.html#opt-vim.lsp.enable"><code class="option">vim.lsp.enable</code></a></span></dt><dd><p>Whether to enable LSP, also enabled automatically through null-ls and lspconfig options.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.formatOnSave"></a><a class="term" href="options.html#opt-vim.lsp.formatOnSave"><code class="option">vim.lsp.formatOnSave</code></a></span></dt><dd><p>Whether to enable format on save.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lightbulb.enable"></a><a class="term" href="options.html#opt-vim.lsp.lightbulb.enable"><code class="option">vim.lsp.lightbulb.enable</code></a></span></dt><dd><p>Whether to enable Lightbulb for code actions. Requires an emoji font.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lightbulb/lightbulb.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lightbulb/lightbulb.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspSignature.enable"></a><a class="term" href="options.html#opt-vim.lsp.lspSignature.enable"><code class="option">vim.lsp.lspSignature.enable</code></a></span></dt><dd><p>Whether to enable lsp signature viewer.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lsp-signature/lsp-signature.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lsp-signature/lsp-signature.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspconfig.enable"></a><a class="term" href="options.html#opt-vim.lsp.lspconfig.enable"><code class="option">vim.lsp.lspconfig.enable</code></a></span></dt><dd><p>Whether to enable nvim-lspconfig, also enabled automatically.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspconfig/lspconfig.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspconfig/lspconfig.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspconfig.sources"></a><a class="term" href="options.html#opt-vim.lsp.lspconfig.sources"><code class="option">vim.lsp.lspconfig.sources</code></a></span></dt><dd><p>nvim-lspconfig sources</p><p><span class="emphasis"><em>Type:</em></span> attribute set of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspconfig/lspconfig.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspconfig/lspconfig.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspkind.enable"></a><a class="term" href="options.html#opt-vim.lsp.lspkind.enable"><code class="option">vim.lsp.lspkind.enable</code></a></span></dt><dd><p>Whether to enable vscode-like pictograms for lsp [lspkind].</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspkind/lspkind.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspkind/lspkind.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspkind.mode"></a><a class="term" href="options.html#opt-vim.lsp.lspkind.mode"><code class="option">vim.lsp.lspkind.mode</code></a></span></dt><dd><p>Defines how annotations are shown</p><p><span class="emphasis"><em>Type:</em></span> one of "text", "text_symbol", "symbol_text", "symbol"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"symbol_text"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspkind/lspkind.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspkind/lspkind.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspsaga.enable"></a><a class="term" href="options.html#opt-vim.lsp.lspsaga.enable"><code class="option">vim.lsp.lspsaga.enable</code></a></span></dt><dd><p>Whether to enable LSP Saga.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspsaga/lspsaga.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspsaga/lspsaga.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspsaga.mappings.codeAction"></a><a class="term" href="options.html#opt-vim.lsp.lspsaga.mappings.codeAction"><code class="option">vim.lsp.lspsaga.mappings.codeAction</code></a></span></dt><dd><p>Code action [LSPSaga]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;ca"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspsaga/lspsaga.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspsaga/lspsaga.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspsaga.mappings.lspFinder"></a><a class="term" href="options.html#opt-vim.lsp.lspsaga.mappings.lspFinder"><code class="option">vim.lsp.lspsaga.mappings.lspFinder</code></a></span></dt><dd><p>LSP Finder [LSPSaga]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;lf"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspsaga/lspsaga.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspsaga/lspsaga.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspsaga.mappings.nextDiagnostic"></a><a class="term" href="options.html#opt-vim.lsp.lspsaga.mappings.nextDiagnostic"><code class="option">vim.lsp.lspsaga.mappings.nextDiagnostic</code></a></span></dt><dd><p>Next diagnostic [LSPSaga]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;ln"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspsaga/lspsaga.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspsaga/lspsaga.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspsaga.mappings.previewDefinition"></a><a class="term" href="options.html#opt-vim.lsp.lspsaga.mappings.previewDefinition"><code class="option">vim.lsp.lspsaga.mappings.previewDefinition</code></a></span></dt><dd><p>Preview definition [LSPSaga]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;ld"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspsaga/lspsaga.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspsaga/lspsaga.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspsaga.mappings.previousDiagnostic"></a><a class="term" href="options.html#opt-vim.lsp.lspsaga.mappings.previousDiagnostic"><code class="option">vim.lsp.lspsaga.mappings.previousDiagnostic</code></a></span></dt><dd><p>Previous diagnostic [LSPSaga]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;lp"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspsaga/lspsaga.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspsaga/lspsaga.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspsaga.mappings.rename"></a><a class="term" href="options.html#opt-vim.lsp.lspsaga.mappings.rename"><code class="option">vim.lsp.lspsaga.mappings.rename</code></a></span></dt><dd><p>Rename [LSPSaga]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;lr"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspsaga/lspsaga.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspsaga/lspsaga.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspsaga.mappings.renderHoveredDoc"></a><a class="term" href="options.html#opt-vim.lsp.lspsaga.mappings.renderHoveredDoc"><code class="option">vim.lsp.lspsaga.mappings.renderHoveredDoc</code></a></span></dt><dd><p>Rendered hovered docs [LSPSaga]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;lh"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspsaga/lspsaga.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspsaga/lspsaga.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspsaga.mappings.showCursorDiagnostics"></a><a class="term" href="options.html#opt-vim.lsp.lspsaga.mappings.showCursorDiagnostics"><code class="option">vim.lsp.lspsaga.mappings.showCursorDiagnostics</code></a></span></dt><dd><p>Show cursor diagnostics [LSPSaga]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;lc"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspsaga/lspsaga.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspsaga/lspsaga.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspsaga.mappings.showLineDiagnostics"></a><a class="term" href="options.html#opt-vim.lsp.lspsaga.mappings.showLineDiagnostics"><code class="option">vim.lsp.lspsaga.mappings.showLineDiagnostics</code></a></span></dt><dd><p>Show line diagnostics [LSPSaga]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;ll"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspsaga/lspsaga.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspsaga/lspsaga.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspsaga.mappings.signatureHelp"></a><a class="term" href="options.html#opt-vim.lsp.lspsaga.mappings.signatureHelp"><code class="option">vim.lsp.lspsaga.mappings.signatureHelp</code></a></span></dt><dd><p>Signature help [LSPSaga]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;ledaer&gt;ls"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspsaga/lspsaga.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspsaga/lspsaga.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspsaga.mappings.smartScrollDown"></a><a class="term" href="options.html#opt-vim.lsp.lspsaga.mappings.smartScrollDown"><code class="option">vim.lsp.lspsaga.mappings.smartScrollDown</code></a></span></dt><dd><p>Smart scroll up [LSPSaga]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;C-b&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspsaga/lspsaga.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspsaga/lspsaga.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.lspsaga.mappings.smartScrollUp"></a><a class="term" href="options.html#opt-vim.lsp.lspsaga.mappings.smartScrollUp"><code class="option">vim.lsp.lspsaga.mappings.smartScrollUp</code></a></span></dt><dd><p>Smart scroll up [LSPSaga]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;C-f&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/lspsaga/lspsaga.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/lspsaga/lspsaga.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.null-ls.enable"></a><a class="term" href="options.html#opt-vim.lsp.null-ls.enable"><code class="option">vim.lsp.null-ls.enable</code></a></span></dt><dd><p>Whether to enable null-ls, also enabled automatically.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/null-ls/null-ls.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/null-ls/null-ls.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.null-ls.sources"></a><a class="term" href="options.html#opt-vim.lsp.null-ls.sources"><code class="option">vim.lsp.null-ls.sources</code></a></span></dt><dd><p>null-ls sources</p><p><span class="emphasis"><em>Type:</em></span> attribute set of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/null-ls/null-ls.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/null-ls/null-ls.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.nvimCodeActionMenu.enable"></a><a class="term" href="options.html#opt-vim.lsp.nvimCodeActionMenu.enable"><code class="option">vim.lsp.nvimCodeActionMenu.enable</code></a></span></dt><dd><p>Whether to enable Enable nvim code action menu.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/nvim-code-action-menu/nvim-code-action-menu.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/nvim-code-action-menu/nvim-code-action-menu.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.nvimCodeActionMenu.mappings.open"></a><a class="term" href="options.html#opt-vim.lsp.nvimCodeActionMenu.mappings.open"><code class="option">vim.lsp.nvimCodeActionMenu.mappings.open</code></a></span></dt><dd><p>Open code action menu [nvim-code-action-menu]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;ca"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/nvim-code-action-menu/nvim-code-action-menu.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/nvim-code-action-menu/nvim-code-action-menu.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.trouble.enable"></a><a class="term" href="options.html#opt-vim.lsp.trouble.enable"><code class="option">vim.lsp.trouble.enable</code></a></span></dt><dd><p>Whether to enable Enable trouble diagnostics viewer.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/trouble/trouble.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/trouble/trouble.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.trouble.mappings.documentDiagnostics"></a><a class="term" href="options.html#opt-vim.lsp.trouble.mappings.documentDiagnostics"><code class="option">vim.lsp.trouble.mappings.documentDiagnostics</code></a></span></dt><dd><p>Document diagnostics [trouble]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;ld"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/trouble/trouble.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/trouble/trouble.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.trouble.mappings.locList"></a><a class="term" href="options.html#opt-vim.lsp.trouble.mappings.locList"><code class="option">vim.lsp.trouble.mappings.locList</code></a></span></dt><dd><p>LOCList [trouble]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;xl"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/trouble/trouble.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/trouble/trouble.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.trouble.mappings.lspReferences"></a><a class="term" href="options.html#opt-vim.lsp.trouble.mappings.lspReferences"><code class="option">vim.lsp.trouble.mappings.lspReferences</code></a></span></dt><dd><p>LSP References [trouble]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;lr"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/trouble/trouble.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/trouble/trouble.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.trouble.mappings.quickfix"></a><a class="term" href="options.html#opt-vim.lsp.trouble.mappings.quickfix"><code class="option">vim.lsp.trouble.mappings.quickfix</code></a></span></dt><dd><p>QuickFix [trouble]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;xq"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/trouble/trouble.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/trouble/trouble.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.trouble.mappings.toggle"></a><a class="term" href="options.html#opt-vim.lsp.trouble.mappings.toggle"><code class="option">vim.lsp.trouble.mappings.toggle</code></a></span></dt><dd><p>Toggle trouble [trouble]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;xx"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/trouble/trouble.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/trouble/trouble.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.lsp.trouble.mappings.workspaceDiagnostics"></a><a class="term" href="options.html#opt-vim.lsp.trouble.mappings.workspaceDiagnostics"><code class="option">vim.lsp.trouble.mappings.workspaceDiagnostics</code></a></span></dt><dd><p>Workspace diagnostics [trouble]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;lwd"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/lsp/trouble/trouble.nix#blob-path" target="_top">
&lt;neovim-flake/modules/lsp/trouble/trouble.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.luaConfigRC"></a><a class="term" href="options.html#opt-vim.luaConfigRC"><code class="option">vim.luaConfigRC</code></a></span></dt><dd><p>vim lua config</p><p><span class="emphasis"><em>Type:</em></span> (DAG of strings concatenated with "\n") or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.mapLeaderSpace"></a><a class="term" href="options.html#opt-vim.mapLeaderSpace"><code class="option">vim.mapLeaderSpace</code></a></span></dt><dd><p>Map the space key to leader key</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.mapTimeout"></a><a class="term" href="options.html#opt-vim.mapTimeout"><code class="option">vim.mapTimeout</code></a></span></dt><dd><p>Timeout in ms that neovim will wait for mapped action to complete</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">500</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps"></a><a class="term" href="options.html#opt-vim.maps"><code class="option">vim.maps</code></a></span></dt><dd><p>Custom keybindings for any mode.
For plain maps (e.g. just 'map' or 'remap') use maps.normalVisualOp.</p><p><span class="emphasis"><em>Type:</em></span> submodule</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Example:</em></span> </p><pre class="programlisting">''
maps = {
normal."&lt;leader&gt;m" = {
silent = true;
action = "&lt;cmd&gt;make&lt;CR&gt;";
}; # Same as nnoremap &lt;leader&gt;m &lt;silent&gt; &lt;cmd&gt;make&lt;CR&gt;
};
''</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.command"></a><a class="term" href="options.html#opt-vim.maps.command"><code class="option">vim.maps.command</code></a></span></dt><dd><p>Mappings for command-line mode</p><p><span class="emphasis"><em>Type:</em></span> attribute set of (submodule)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.command._name_.action"></a><a class="term" href="options.html#opt-vim.maps.command._name_.action"><code class="option">vim.maps.command.&lt;name&gt;.action</code></a></span></dt><dd><p>The action to execute.</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.command._name_.desc"></a><a class="term" href="options.html#opt-vim.maps.command._name_.desc"><code class="option">vim.maps.command.&lt;name&gt;.desc</code></a></span></dt><dd><p>A description of this keybind, to be shown in which-key, if you have it enabled.</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.command._name_.expr"></a><a class="term" href="options.html#opt-vim.maps.command._name_.expr"><code class="option">vim.maps.command.&lt;name&gt;.expr</code></a></span></dt><dd><p class="simpara">Means that the action is actually an expression. Equivalent to adding &lt;expr&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.command._name_.lua"></a><a class="term" href="options.html#opt-vim.maps.command._name_.lua"><code class="option">vim.maps.command.&lt;name&gt;.lua</code></a></span></dt><dd><p>If true, `action` is considered to be lua code.
Thus, it will not be wrapped in `""`.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.command._name_.noremap"></a><a class="term" href="options.html#opt-vim.maps.command._name_.noremap"><code class="option">vim.maps.command.&lt;name&gt;.noremap</code></a></span></dt><dd><p>Whether to use the 'noremap' variant of the command, ignoring any custom mappings on the defined action. It is highly advised to keep this on, which is the default.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.command._name_.nowait"></a><a class="term" href="options.html#opt-vim.maps.command._name_.nowait"><code class="option">vim.maps.command.&lt;name&gt;.nowait</code></a></span></dt><dd><p class="simpara">Whether to wait for extra input on ambiguous mappings. Equivalent to adding &lt;nowait&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.command._name_.script"></a><a class="term" href="options.html#opt-vim.maps.command._name_.script"><code class="option">vim.maps.command.&lt;name&gt;.script</code></a></span></dt><dd><p class="simpara">Equivalent to adding &lt;script&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.command._name_.silent"></a><a class="term" href="options.html#opt-vim.maps.command._name_.silent"><code class="option">vim.maps.command.&lt;name&gt;.silent</code></a></span></dt><dd><p class="simpara">Whether this mapping should be silent. Equivalent to adding &lt;silent&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.command._name_.unique"></a><a class="term" href="options.html#opt-vim.maps.command._name_.unique"><code class="option">vim.maps.command.&lt;name&gt;.unique</code></a></span></dt><dd><p class="simpara">Whether to fail if the map is already defined. Equivalent to adding &lt;unique&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insert"></a><a class="term" href="options.html#opt-vim.maps.insert"><code class="option">vim.maps.insert</code></a></span></dt><dd><p>Mappings for insert mode</p><p><span class="emphasis"><em>Type:</em></span> attribute set of (submodule)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insert._name_.action"></a><a class="term" href="options.html#opt-vim.maps.insert._name_.action"><code class="option">vim.maps.insert.&lt;name&gt;.action</code></a></span></dt><dd><p>The action to execute.</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insert._name_.desc"></a><a class="term" href="options.html#opt-vim.maps.insert._name_.desc"><code class="option">vim.maps.insert.&lt;name&gt;.desc</code></a></span></dt><dd><p>A description of this keybind, to be shown in which-key, if you have it enabled.</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insert._name_.expr"></a><a class="term" href="options.html#opt-vim.maps.insert._name_.expr"><code class="option">vim.maps.insert.&lt;name&gt;.expr</code></a></span></dt><dd><p class="simpara">Means that the action is actually an expression. Equivalent to adding &lt;expr&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insert._name_.lua"></a><a class="term" href="options.html#opt-vim.maps.insert._name_.lua"><code class="option">vim.maps.insert.&lt;name&gt;.lua</code></a></span></dt><dd><p>If true, `action` is considered to be lua code.
Thus, it will not be wrapped in `""`.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insert._name_.noremap"></a><a class="term" href="options.html#opt-vim.maps.insert._name_.noremap"><code class="option">vim.maps.insert.&lt;name&gt;.noremap</code></a></span></dt><dd><p>Whether to use the 'noremap' variant of the command, ignoring any custom mappings on the defined action. It is highly advised to keep this on, which is the default.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insert._name_.nowait"></a><a class="term" href="options.html#opt-vim.maps.insert._name_.nowait"><code class="option">vim.maps.insert.&lt;name&gt;.nowait</code></a></span></dt><dd><p class="simpara">Whether to wait for extra input on ambiguous mappings. Equivalent to adding &lt;nowait&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insert._name_.script"></a><a class="term" href="options.html#opt-vim.maps.insert._name_.script"><code class="option">vim.maps.insert.&lt;name&gt;.script</code></a></span></dt><dd><p class="simpara">Equivalent to adding &lt;script&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insert._name_.silent"></a><a class="term" href="options.html#opt-vim.maps.insert._name_.silent"><code class="option">vim.maps.insert.&lt;name&gt;.silent</code></a></span></dt><dd><p class="simpara">Whether this mapping should be silent. Equivalent to adding &lt;silent&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insert._name_.unique"></a><a class="term" href="options.html#opt-vim.maps.insert._name_.unique"><code class="option">vim.maps.insert.&lt;name&gt;.unique</code></a></span></dt><dd><p class="simpara">Whether to fail if the map is already defined. Equivalent to adding &lt;unique&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insertCommand"></a><a class="term" href="options.html#opt-vim.maps.insertCommand"><code class="option">vim.maps.insertCommand</code></a></span></dt><dd><p>Mappings for insert and command-line mode</p><p><span class="emphasis"><em>Type:</em></span> attribute set of (submodule)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insertCommand._name_.action"></a><a class="term" href="options.html#opt-vim.maps.insertCommand._name_.action"><code class="option">vim.maps.insertCommand.&lt;name&gt;.action</code></a></span></dt><dd><p>The action to execute.</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insertCommand._name_.desc"></a><a class="term" href="options.html#opt-vim.maps.insertCommand._name_.desc"><code class="option">vim.maps.insertCommand.&lt;name&gt;.desc</code></a></span></dt><dd><p>A description of this keybind, to be shown in which-key, if you have it enabled.</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insertCommand._name_.expr"></a><a class="term" href="options.html#opt-vim.maps.insertCommand._name_.expr"><code class="option">vim.maps.insertCommand.&lt;name&gt;.expr</code></a></span></dt><dd><p class="simpara">Means that the action is actually an expression. Equivalent to adding &lt;expr&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insertCommand._name_.lua"></a><a class="term" href="options.html#opt-vim.maps.insertCommand._name_.lua"><code class="option">vim.maps.insertCommand.&lt;name&gt;.lua</code></a></span></dt><dd><p>If true, `action` is considered to be lua code.
Thus, it will not be wrapped in `""`.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insertCommand._name_.noremap"></a><a class="term" href="options.html#opt-vim.maps.insertCommand._name_.noremap"><code class="option">vim.maps.insertCommand.&lt;name&gt;.noremap</code></a></span></dt><dd><p>Whether to use the 'noremap' variant of the command, ignoring any custom mappings on the defined action. It is highly advised to keep this on, which is the default.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insertCommand._name_.nowait"></a><a class="term" href="options.html#opt-vim.maps.insertCommand._name_.nowait"><code class="option">vim.maps.insertCommand.&lt;name&gt;.nowait</code></a></span></dt><dd><p class="simpara">Whether to wait for extra input on ambiguous mappings. Equivalent to adding &lt;nowait&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insertCommand._name_.script"></a><a class="term" href="options.html#opt-vim.maps.insertCommand._name_.script"><code class="option">vim.maps.insertCommand.&lt;name&gt;.script</code></a></span></dt><dd><p class="simpara">Equivalent to adding &lt;script&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insertCommand._name_.silent"></a><a class="term" href="options.html#opt-vim.maps.insertCommand._name_.silent"><code class="option">vim.maps.insertCommand.&lt;name&gt;.silent</code></a></span></dt><dd><p class="simpara">Whether this mapping should be silent. Equivalent to adding &lt;silent&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.insertCommand._name_.unique"></a><a class="term" href="options.html#opt-vim.maps.insertCommand._name_.unique"><code class="option">vim.maps.insertCommand.&lt;name&gt;.unique</code></a></span></dt><dd><p class="simpara">Whether to fail if the map is already defined. Equivalent to adding &lt;unique&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.lang"></a><a class="term" href="options.html#opt-vim.maps.lang"><code class="option">vim.maps.lang</code></a></span></dt><dd><p>Mappings for insert, command-line and lang-arg mode</p><p><span class="emphasis"><em>Type:</em></span> attribute set of (submodule)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.lang._name_.action"></a><a class="term" href="options.html#opt-vim.maps.lang._name_.action"><code class="option">vim.maps.lang.&lt;name&gt;.action</code></a></span></dt><dd><p>The action to execute.</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.lang._name_.desc"></a><a class="term" href="options.html#opt-vim.maps.lang._name_.desc"><code class="option">vim.maps.lang.&lt;name&gt;.desc</code></a></span></dt><dd><p>A description of this keybind, to be shown in which-key, if you have it enabled.</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.lang._name_.expr"></a><a class="term" href="options.html#opt-vim.maps.lang._name_.expr"><code class="option">vim.maps.lang.&lt;name&gt;.expr</code></a></span></dt><dd><p class="simpara">Means that the action is actually an expression. Equivalent to adding &lt;expr&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.lang._name_.lua"></a><a class="term" href="options.html#opt-vim.maps.lang._name_.lua"><code class="option">vim.maps.lang.&lt;name&gt;.lua</code></a></span></dt><dd><p>If true, `action` is considered to be lua code.
Thus, it will not be wrapped in `""`.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.lang._name_.noremap"></a><a class="term" href="options.html#opt-vim.maps.lang._name_.noremap"><code class="option">vim.maps.lang.&lt;name&gt;.noremap</code></a></span></dt><dd><p>Whether to use the 'noremap' variant of the command, ignoring any custom mappings on the defined action. It is highly advised to keep this on, which is the default.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.lang._name_.nowait"></a><a class="term" href="options.html#opt-vim.maps.lang._name_.nowait"><code class="option">vim.maps.lang.&lt;name&gt;.nowait</code></a></span></dt><dd><p class="simpara">Whether to wait for extra input on ambiguous mappings. Equivalent to adding &lt;nowait&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.lang._name_.script"></a><a class="term" href="options.html#opt-vim.maps.lang._name_.script"><code class="option">vim.maps.lang.&lt;name&gt;.script</code></a></span></dt><dd><p class="simpara">Equivalent to adding &lt;script&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.lang._name_.silent"></a><a class="term" href="options.html#opt-vim.maps.lang._name_.silent"><code class="option">vim.maps.lang.&lt;name&gt;.silent</code></a></span></dt><dd><p class="simpara">Whether this mapping should be silent. Equivalent to adding &lt;silent&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.lang._name_.unique"></a><a class="term" href="options.html#opt-vim.maps.lang._name_.unique"><code class="option">vim.maps.lang.&lt;name&gt;.unique</code></a></span></dt><dd><p class="simpara">Whether to fail if the map is already defined. Equivalent to adding &lt;unique&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normal"></a><a class="term" href="options.html#opt-vim.maps.normal"><code class="option">vim.maps.normal</code></a></span></dt><dd><p>Mappings for normal mode</p><p><span class="emphasis"><em>Type:</em></span> attribute set of (submodule)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normal._name_.action"></a><a class="term" href="options.html#opt-vim.maps.normal._name_.action"><code class="option">vim.maps.normal.&lt;name&gt;.action</code></a></span></dt><dd><p>The action to execute.</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normal._name_.desc"></a><a class="term" href="options.html#opt-vim.maps.normal._name_.desc"><code class="option">vim.maps.normal.&lt;name&gt;.desc</code></a></span></dt><dd><p>A description of this keybind, to be shown in which-key, if you have it enabled.</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normal._name_.expr"></a><a class="term" href="options.html#opt-vim.maps.normal._name_.expr"><code class="option">vim.maps.normal.&lt;name&gt;.expr</code></a></span></dt><dd><p class="simpara">Means that the action is actually an expression. Equivalent to adding &lt;expr&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normal._name_.lua"></a><a class="term" href="options.html#opt-vim.maps.normal._name_.lua"><code class="option">vim.maps.normal.&lt;name&gt;.lua</code></a></span></dt><dd><p>If true, `action` is considered to be lua code.
Thus, it will not be wrapped in `""`.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normal._name_.noremap"></a><a class="term" href="options.html#opt-vim.maps.normal._name_.noremap"><code class="option">vim.maps.normal.&lt;name&gt;.noremap</code></a></span></dt><dd><p>Whether to use the 'noremap' variant of the command, ignoring any custom mappings on the defined action. It is highly advised to keep this on, which is the default.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normal._name_.nowait"></a><a class="term" href="options.html#opt-vim.maps.normal._name_.nowait"><code class="option">vim.maps.normal.&lt;name&gt;.nowait</code></a></span></dt><dd><p class="simpara">Whether to wait for extra input on ambiguous mappings. Equivalent to adding &lt;nowait&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normal._name_.script"></a><a class="term" href="options.html#opt-vim.maps.normal._name_.script"><code class="option">vim.maps.normal.&lt;name&gt;.script</code></a></span></dt><dd><p class="simpara">Equivalent to adding &lt;script&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normal._name_.silent"></a><a class="term" href="options.html#opt-vim.maps.normal._name_.silent"><code class="option">vim.maps.normal.&lt;name&gt;.silent</code></a></span></dt><dd><p class="simpara">Whether this mapping should be silent. Equivalent to adding &lt;silent&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normal._name_.unique"></a><a class="term" href="options.html#opt-vim.maps.normal._name_.unique"><code class="option">vim.maps.normal.&lt;name&gt;.unique</code></a></span></dt><dd><p class="simpara">Whether to fail if the map is already defined. Equivalent to adding &lt;unique&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normalVisualOp"></a><a class="term" href="options.html#opt-vim.maps.normalVisualOp"><code class="option">vim.maps.normalVisualOp</code></a></span></dt><dd><p>Mappings for normal, visual, select and operator-pending (same as plain 'map') mode</p><p><span class="emphasis"><em>Type:</em></span> attribute set of (submodule)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normalVisualOp._name_.action"></a><a class="term" href="options.html#opt-vim.maps.normalVisualOp._name_.action"><code class="option">vim.maps.normalVisualOp.&lt;name&gt;.action</code></a></span></dt><dd><p>The action to execute.</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normalVisualOp._name_.desc"></a><a class="term" href="options.html#opt-vim.maps.normalVisualOp._name_.desc"><code class="option">vim.maps.normalVisualOp.&lt;name&gt;.desc</code></a></span></dt><dd><p>A description of this keybind, to be shown in which-key, if you have it enabled.</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normalVisualOp._name_.expr"></a><a class="term" href="options.html#opt-vim.maps.normalVisualOp._name_.expr"><code class="option">vim.maps.normalVisualOp.&lt;name&gt;.expr</code></a></span></dt><dd><p class="simpara">Means that the action is actually an expression. Equivalent to adding &lt;expr&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normalVisualOp._name_.lua"></a><a class="term" href="options.html#opt-vim.maps.normalVisualOp._name_.lua"><code class="option">vim.maps.normalVisualOp.&lt;name&gt;.lua</code></a></span></dt><dd><p>If true, `action` is considered to be lua code.
Thus, it will not be wrapped in `""`.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normalVisualOp._name_.noremap"></a><a class="term" href="options.html#opt-vim.maps.normalVisualOp._name_.noremap"><code class="option">vim.maps.normalVisualOp.&lt;name&gt;.noremap</code></a></span></dt><dd><p>Whether to use the 'noremap' variant of the command, ignoring any custom mappings on the defined action. It is highly advised to keep this on, which is the default.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normalVisualOp._name_.nowait"></a><a class="term" href="options.html#opt-vim.maps.normalVisualOp._name_.nowait"><code class="option">vim.maps.normalVisualOp.&lt;name&gt;.nowait</code></a></span></dt><dd><p class="simpara">Whether to wait for extra input on ambiguous mappings. Equivalent to adding &lt;nowait&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normalVisualOp._name_.script"></a><a class="term" href="options.html#opt-vim.maps.normalVisualOp._name_.script"><code class="option">vim.maps.normalVisualOp.&lt;name&gt;.script</code></a></span></dt><dd><p class="simpara">Equivalent to adding &lt;script&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normalVisualOp._name_.silent"></a><a class="term" href="options.html#opt-vim.maps.normalVisualOp._name_.silent"><code class="option">vim.maps.normalVisualOp.&lt;name&gt;.silent</code></a></span></dt><dd><p class="simpara">Whether this mapping should be silent. Equivalent to adding &lt;silent&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.normalVisualOp._name_.unique"></a><a class="term" href="options.html#opt-vim.maps.normalVisualOp._name_.unique"><code class="option">vim.maps.normalVisualOp.&lt;name&gt;.unique</code></a></span></dt><dd><p class="simpara">Whether to fail if the map is already defined. Equivalent to adding &lt;unique&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.operator"></a><a class="term" href="options.html#opt-vim.maps.operator"><code class="option">vim.maps.operator</code></a></span></dt><dd><p>Mappings for operator-pending mode</p><p><span class="emphasis"><em>Type:</em></span> attribute set of (submodule)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.operator._name_.action"></a><a class="term" href="options.html#opt-vim.maps.operator._name_.action"><code class="option">vim.maps.operator.&lt;name&gt;.action</code></a></span></dt><dd><p>The action to execute.</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.operator._name_.desc"></a><a class="term" href="options.html#opt-vim.maps.operator._name_.desc"><code class="option">vim.maps.operator.&lt;name&gt;.desc</code></a></span></dt><dd><p>A description of this keybind, to be shown in which-key, if you have it enabled.</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.operator._name_.expr"></a><a class="term" href="options.html#opt-vim.maps.operator._name_.expr"><code class="option">vim.maps.operator.&lt;name&gt;.expr</code></a></span></dt><dd><p class="simpara">Means that the action is actually an expression. Equivalent to adding &lt;expr&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.operator._name_.lua"></a><a class="term" href="options.html#opt-vim.maps.operator._name_.lua"><code class="option">vim.maps.operator.&lt;name&gt;.lua</code></a></span></dt><dd><p>If true, `action` is considered to be lua code.
Thus, it will not be wrapped in `""`.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.operator._name_.noremap"></a><a class="term" href="options.html#opt-vim.maps.operator._name_.noremap"><code class="option">vim.maps.operator.&lt;name&gt;.noremap</code></a></span></dt><dd><p>Whether to use the 'noremap' variant of the command, ignoring any custom mappings on the defined action. It is highly advised to keep this on, which is the default.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.operator._name_.nowait"></a><a class="term" href="options.html#opt-vim.maps.operator._name_.nowait"><code class="option">vim.maps.operator.&lt;name&gt;.nowait</code></a></span></dt><dd><p class="simpara">Whether to wait for extra input on ambiguous mappings. Equivalent to adding &lt;nowait&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.operator._name_.script"></a><a class="term" href="options.html#opt-vim.maps.operator._name_.script"><code class="option">vim.maps.operator.&lt;name&gt;.script</code></a></span></dt><dd><p class="simpara">Equivalent to adding &lt;script&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.operator._name_.silent"></a><a class="term" href="options.html#opt-vim.maps.operator._name_.silent"><code class="option">vim.maps.operator.&lt;name&gt;.silent</code></a></span></dt><dd><p class="simpara">Whether this mapping should be silent. Equivalent to adding &lt;silent&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.operator._name_.unique"></a><a class="term" href="options.html#opt-vim.maps.operator._name_.unique"><code class="option">vim.maps.operator.&lt;name&gt;.unique</code></a></span></dt><dd><p class="simpara">Whether to fail if the map is already defined. Equivalent to adding &lt;unique&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.select"></a><a class="term" href="options.html#opt-vim.maps.select"><code class="option">vim.maps.select</code></a></span></dt><dd><p>Mappings for select mode</p><p><span class="emphasis"><em>Type:</em></span> attribute set of (submodule)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.select._name_.action"></a><a class="term" href="options.html#opt-vim.maps.select._name_.action"><code class="option">vim.maps.select.&lt;name&gt;.action</code></a></span></dt><dd><p>The action to execute.</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.select._name_.desc"></a><a class="term" href="options.html#opt-vim.maps.select._name_.desc"><code class="option">vim.maps.select.&lt;name&gt;.desc</code></a></span></dt><dd><p>A description of this keybind, to be shown in which-key, if you have it enabled.</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.select._name_.expr"></a><a class="term" href="options.html#opt-vim.maps.select._name_.expr"><code class="option">vim.maps.select.&lt;name&gt;.expr</code></a></span></dt><dd><p class="simpara">Means that the action is actually an expression. Equivalent to adding &lt;expr&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.select._name_.lua"></a><a class="term" href="options.html#opt-vim.maps.select._name_.lua"><code class="option">vim.maps.select.&lt;name&gt;.lua</code></a></span></dt><dd><p>If true, `action` is considered to be lua code.
Thus, it will not be wrapped in `""`.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.select._name_.noremap"></a><a class="term" href="options.html#opt-vim.maps.select._name_.noremap"><code class="option">vim.maps.select.&lt;name&gt;.noremap</code></a></span></dt><dd><p>Whether to use the 'noremap' variant of the command, ignoring any custom mappings on the defined action. It is highly advised to keep this on, which is the default.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.select._name_.nowait"></a><a class="term" href="options.html#opt-vim.maps.select._name_.nowait"><code class="option">vim.maps.select.&lt;name&gt;.nowait</code></a></span></dt><dd><p class="simpara">Whether to wait for extra input on ambiguous mappings. Equivalent to adding &lt;nowait&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.select._name_.script"></a><a class="term" href="options.html#opt-vim.maps.select._name_.script"><code class="option">vim.maps.select.&lt;name&gt;.script</code></a></span></dt><dd><p class="simpara">Equivalent to adding &lt;script&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.select._name_.silent"></a><a class="term" href="options.html#opt-vim.maps.select._name_.silent"><code class="option">vim.maps.select.&lt;name&gt;.silent</code></a></span></dt><dd><p class="simpara">Whether this mapping should be silent. Equivalent to adding &lt;silent&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.select._name_.unique"></a><a class="term" href="options.html#opt-vim.maps.select._name_.unique"><code class="option">vim.maps.select.&lt;name&gt;.unique</code></a></span></dt><dd><p class="simpara">Whether to fail if the map is already defined. Equivalent to adding &lt;unique&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.terminal"></a><a class="term" href="options.html#opt-vim.maps.terminal"><code class="option">vim.maps.terminal</code></a></span></dt><dd><p>Mappings for terminal mode</p><p><span class="emphasis"><em>Type:</em></span> attribute set of (submodule)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.terminal._name_.action"></a><a class="term" href="options.html#opt-vim.maps.terminal._name_.action"><code class="option">vim.maps.terminal.&lt;name&gt;.action</code></a></span></dt><dd><p>The action to execute.</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.terminal._name_.desc"></a><a class="term" href="options.html#opt-vim.maps.terminal._name_.desc"><code class="option">vim.maps.terminal.&lt;name&gt;.desc</code></a></span></dt><dd><p>A description of this keybind, to be shown in which-key, if you have it enabled.</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.terminal._name_.expr"></a><a class="term" href="options.html#opt-vim.maps.terminal._name_.expr"><code class="option">vim.maps.terminal.&lt;name&gt;.expr</code></a></span></dt><dd><p class="simpara">Means that the action is actually an expression. Equivalent to adding &lt;expr&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.terminal._name_.lua"></a><a class="term" href="options.html#opt-vim.maps.terminal._name_.lua"><code class="option">vim.maps.terminal.&lt;name&gt;.lua</code></a></span></dt><dd><p>If true, `action` is considered to be lua code.
Thus, it will not be wrapped in `""`.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.terminal._name_.noremap"></a><a class="term" href="options.html#opt-vim.maps.terminal._name_.noremap"><code class="option">vim.maps.terminal.&lt;name&gt;.noremap</code></a></span></dt><dd><p>Whether to use the 'noremap' variant of the command, ignoring any custom mappings on the defined action. It is highly advised to keep this on, which is the default.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.terminal._name_.nowait"></a><a class="term" href="options.html#opt-vim.maps.terminal._name_.nowait"><code class="option">vim.maps.terminal.&lt;name&gt;.nowait</code></a></span></dt><dd><p class="simpara">Whether to wait for extra input on ambiguous mappings. Equivalent to adding &lt;nowait&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.terminal._name_.script"></a><a class="term" href="options.html#opt-vim.maps.terminal._name_.script"><code class="option">vim.maps.terminal.&lt;name&gt;.script</code></a></span></dt><dd><p class="simpara">Equivalent to adding &lt;script&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.terminal._name_.silent"></a><a class="term" href="options.html#opt-vim.maps.terminal._name_.silent"><code class="option">vim.maps.terminal.&lt;name&gt;.silent</code></a></span></dt><dd><p class="simpara">Whether this mapping should be silent. Equivalent to adding &lt;silent&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.terminal._name_.unique"></a><a class="term" href="options.html#opt-vim.maps.terminal._name_.unique"><code class="option">vim.maps.terminal.&lt;name&gt;.unique</code></a></span></dt><dd><p class="simpara">Whether to fail if the map is already defined. Equivalent to adding &lt;unique&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visual"></a><a class="term" href="options.html#opt-vim.maps.visual"><code class="option">vim.maps.visual</code></a></span></dt><dd><p>Mappings for visual and select mode</p><p><span class="emphasis"><em>Type:</em></span> attribute set of (submodule)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visual._name_.action"></a><a class="term" href="options.html#opt-vim.maps.visual._name_.action"><code class="option">vim.maps.visual.&lt;name&gt;.action</code></a></span></dt><dd><p>The action to execute.</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visual._name_.desc"></a><a class="term" href="options.html#opt-vim.maps.visual._name_.desc"><code class="option">vim.maps.visual.&lt;name&gt;.desc</code></a></span></dt><dd><p>A description of this keybind, to be shown in which-key, if you have it enabled.</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visual._name_.expr"></a><a class="term" href="options.html#opt-vim.maps.visual._name_.expr"><code class="option">vim.maps.visual.&lt;name&gt;.expr</code></a></span></dt><dd><p class="simpara">Means that the action is actually an expression. Equivalent to adding &lt;expr&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visual._name_.lua"></a><a class="term" href="options.html#opt-vim.maps.visual._name_.lua"><code class="option">vim.maps.visual.&lt;name&gt;.lua</code></a></span></dt><dd><p>If true, `action` is considered to be lua code.
Thus, it will not be wrapped in `""`.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visual._name_.noremap"></a><a class="term" href="options.html#opt-vim.maps.visual._name_.noremap"><code class="option">vim.maps.visual.&lt;name&gt;.noremap</code></a></span></dt><dd><p>Whether to use the 'noremap' variant of the command, ignoring any custom mappings on the defined action. It is highly advised to keep this on, which is the default.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visual._name_.nowait"></a><a class="term" href="options.html#opt-vim.maps.visual._name_.nowait"><code class="option">vim.maps.visual.&lt;name&gt;.nowait</code></a></span></dt><dd><p class="simpara">Whether to wait for extra input on ambiguous mappings. Equivalent to adding &lt;nowait&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visual._name_.script"></a><a class="term" href="options.html#opt-vim.maps.visual._name_.script"><code class="option">vim.maps.visual.&lt;name&gt;.script</code></a></span></dt><dd><p class="simpara">Equivalent to adding &lt;script&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visual._name_.silent"></a><a class="term" href="options.html#opt-vim.maps.visual._name_.silent"><code class="option">vim.maps.visual.&lt;name&gt;.silent</code></a></span></dt><dd><p class="simpara">Whether this mapping should be silent. Equivalent to adding &lt;silent&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visual._name_.unique"></a><a class="term" href="options.html#opt-vim.maps.visual._name_.unique"><code class="option">vim.maps.visual.&lt;name&gt;.unique</code></a></span></dt><dd><p class="simpara">Whether to fail if the map is already defined. Equivalent to adding &lt;unique&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visualOnly"></a><a class="term" href="options.html#opt-vim.maps.visualOnly"><code class="option">vim.maps.visualOnly</code></a></span></dt><dd><p>Mappings for visual only mode</p><p><span class="emphasis"><em>Type:</em></span> attribute set of (submodule)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">{ }</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visualOnly._name_.action"></a><a class="term" href="options.html#opt-vim.maps.visualOnly._name_.action"><code class="option">vim.maps.visualOnly.&lt;name&gt;.action</code></a></span></dt><dd><p>The action to execute.</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visualOnly._name_.desc"></a><a class="term" href="options.html#opt-vim.maps.visualOnly._name_.desc"><code class="option">vim.maps.visualOnly.&lt;name&gt;.desc</code></a></span></dt><dd><p>A description of this keybind, to be shown in which-key, if you have it enabled.</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visualOnly._name_.expr"></a><a class="term" href="options.html#opt-vim.maps.visualOnly._name_.expr"><code class="option">vim.maps.visualOnly.&lt;name&gt;.expr</code></a></span></dt><dd><p class="simpara">Means that the action is actually an expression. Equivalent to adding &lt;expr&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visualOnly._name_.lua"></a><a class="term" href="options.html#opt-vim.maps.visualOnly._name_.lua"><code class="option">vim.maps.visualOnly.&lt;name&gt;.lua</code></a></span></dt><dd><p>If true, `action` is considered to be lua code.
Thus, it will not be wrapped in `""`.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visualOnly._name_.noremap"></a><a class="term" href="options.html#opt-vim.maps.visualOnly._name_.noremap"><code class="option">vim.maps.visualOnly.&lt;name&gt;.noremap</code></a></span></dt><dd><p>Whether to use the 'noremap' variant of the command, ignoring any custom mappings on the defined action. It is highly advised to keep this on, which is the default.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visualOnly._name_.nowait"></a><a class="term" href="options.html#opt-vim.maps.visualOnly._name_.nowait"><code class="option">vim.maps.visualOnly.&lt;name&gt;.nowait</code></a></span></dt><dd><p class="simpara">Whether to wait for extra input on ambiguous mappings. Equivalent to adding &lt;nowait&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visualOnly._name_.script"></a><a class="term" href="options.html#opt-vim.maps.visualOnly._name_.script"><code class="option">vim.maps.visualOnly.&lt;name&gt;.script</code></a></span></dt><dd><p class="simpara">Equivalent to adding &lt;script&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visualOnly._name_.silent"></a><a class="term" href="options.html#opt-vim.maps.visualOnly._name_.silent"><code class="option">vim.maps.visualOnly.&lt;name&gt;.silent</code></a></span></dt><dd><p class="simpara">Whether this mapping should be silent. Equivalent to adding &lt;silent&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.maps.visualOnly._name_.unique"></a><a class="term" href="options.html#opt-vim.maps.visualOnly._name_.unique"><code class="option">vim.maps.visualOnly.&lt;name&gt;.unique</code></a></span></dt><dd><p class="simpara">Whether to fail if the map is already defined. Equivalent to adding &lt;unique&gt; to a map.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.minimap.codewindow.enable"></a><a class="term" href="options.html#opt-vim.minimap.codewindow.enable"><code class="option">vim.minimap.codewindow.enable</code></a></span></dt><dd><p>Whether to enable codewindow plugin for minimap view.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/minimap/codewindow/codewindow.nix#blob-path" target="_top">
&lt;neovim-flake/modules/minimap/codewindow/codewindow.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.minimap.codewindow.mappings.close"></a><a class="term" href="options.html#opt-vim.minimap.codewindow.mappings.close"><code class="option">vim.minimap.codewindow.mappings.close</code></a></span></dt><dd><p>Close minimap [codewindow]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;mc"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/minimap/codewindow/codewindow.nix#blob-path" target="_top">
&lt;neovim-flake/modules/minimap/codewindow/codewindow.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.minimap.codewindow.mappings.open"></a><a class="term" href="options.html#opt-vim.minimap.codewindow.mappings.open"><code class="option">vim.minimap.codewindow.mappings.open</code></a></span></dt><dd><p>Open minimap [codewindow]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;mo"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/minimap/codewindow/codewindow.nix#blob-path" target="_top">
&lt;neovim-flake/modules/minimap/codewindow/codewindow.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.minimap.codewindow.mappings.toggle"></a><a class="term" href="options.html#opt-vim.minimap.codewindow.mappings.toggle"><code class="option">vim.minimap.codewindow.mappings.toggle</code></a></span></dt><dd><p>Toggle minimap [codewindow]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;mm"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/minimap/codewindow/codewindow.nix#blob-path" target="_top">
&lt;neovim-flake/modules/minimap/codewindow/codewindow.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.minimap.codewindow.mappings.toggleFocus"></a><a class="term" href="options.html#opt-vim.minimap.codewindow.mappings.toggleFocus"><code class="option">vim.minimap.codewindow.mappings.toggleFocus</code></a></span></dt><dd><p>Toggle minimap focus [codewindow]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;mf"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/minimap/codewindow/codewindow.nix#blob-path" target="_top">
&lt;neovim-flake/modules/minimap/codewindow/codewindow.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.minimap.minimap-vim.enable"></a><a class="term" href="options.html#opt-vim.minimap.minimap-vim.enable"><code class="option">vim.minimap.minimap-vim.enable</code></a></span></dt><dd><p>Whether to enable minimap-vim plugin for minimap view.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/minimap/minimap-vim/minimap-vim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/minimap/minimap-vim/minimap-vim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.mouseSupport"></a><a class="term" href="options.html#opt-vim.mouseSupport"><code class="option">vim.mouseSupport</code></a></span></dt><dd><p>Set modes for mouse support. a - all, n - normal, v - visual, i - insert, c - command</p><p><span class="emphasis"><em>Type:</em></span> one of "a", "n", "v", "i", "c"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"a"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notes.mind-nvim.enable"></a><a class="term" href="options.html#opt-vim.notes.mind-nvim.enable"><code class="option">vim.notes.mind-nvim.enable</code></a></span></dt><dd><p>Whether to enable organizer tool for Neovim..</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/notes/mind-nvim/mind-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/notes/mind-nvim/mind-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notes.obsidian.enable"></a><a class="term" href="options.html#opt-vim.notes.obsidian.enable"><code class="option">vim.notes.obsidian.enable</code></a></span></dt><dd><p>Whether to enable complementary neovim plugins for Obsidian editor.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/notes/obsidian/obsidian.nix#blob-path" target="_top">
&lt;neovim-flake/modules/notes/obsidian/obsidian.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notes.obsidian.completion.nvim_cmp"></a><a class="term" href="options.html#opt-vim.notes.obsidian.completion.nvim_cmp"><code class="option">vim.notes.obsidian.completion.nvim_cmp</code></a></span></dt><dd><p>If using nvim-cmp, otherwise set to false</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/notes/obsidian/obsidian.nix#blob-path" target="_top">
&lt;neovim-flake/modules/notes/obsidian/obsidian.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notes.obsidian.daily-notes.date-format"></a><a class="term" href="options.html#opt-vim.notes.obsidian.daily-notes.date-format"><code class="option">vim.notes.obsidian.daily-notes.date-format</code></a></span></dt><dd><p>Date format used for creating daily notes</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/notes/obsidian/obsidian.nix#blob-path" target="_top">
&lt;neovim-flake/modules/notes/obsidian/obsidian.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notes.obsidian.daily-notes.folder"></a><a class="term" href="options.html#opt-vim.notes.obsidian.daily-notes.folder"><code class="option">vim.notes.obsidian.daily-notes.folder</code></a></span></dt><dd><p>Directory in which daily notes should be created</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/notes/obsidian/obsidian.nix#blob-path" target="_top">
&lt;neovim-flake/modules/notes/obsidian/obsidian.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notes.obsidian.dir"></a><a class="term" href="options.html#opt-vim.notes.obsidian.dir"><code class="option">vim.notes.obsidian.dir</code></a></span></dt><dd><p>Obsidian vault directory</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"~/my-vault"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/notes/obsidian/obsidian.nix#blob-path" target="_top">
&lt;neovim-flake/modules/notes/obsidian/obsidian.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notes.orgmode.enable"></a><a class="term" href="options.html#opt-vim.notes.orgmode.enable"><code class="option">vim.notes.orgmode.enable</code></a></span></dt><dd><p>Whether to enable nvim-orgmode: Neovim plugin for Emac Orgmode. Get the best of both worlds.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/notes/orgmode/orgmode.nix#blob-path" target="_top">
&lt;neovim-flake/modules/notes/orgmode/orgmode.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notes.orgmode.orgAgendaFiles"></a><a class="term" href="options.html#opt-vim.notes.orgmode.orgAgendaFiles"><code class="option">vim.notes.orgmode.orgAgendaFiles</code></a></span></dt><dd><p>List of org files to be used as agenda files.</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"{'~/Documents/org/*', '~/my-orgs/**/*'}"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/notes/orgmode/orgmode.nix#blob-path" target="_top">
&lt;neovim-flake/modules/notes/orgmode/orgmode.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notes.orgmode.orgDefaultNotesFile"></a><a class="term" href="options.html#opt-vim.notes.orgmode.orgDefaultNotesFile"><code class="option">vim.notes.orgmode.orgDefaultNotesFile</code></a></span></dt><dd><p>Default org file to be used for notes.</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"~/Documents/org/refile.org"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/notes/orgmode/orgmode.nix#blob-path" target="_top">
&lt;neovim-flake/modules/notes/orgmode/orgmode.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notes.todo-comments.enable"></a><a class="term" href="options.html#opt-vim.notes.todo-comments.enable"><code class="option">vim.notes.todo-comments.enable</code></a></span></dt><dd><p>Whether to enable todo-comments: highlight and search for todo comments like TODO, HACK, BUG in your code base.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/notes/todo-comments/todo-comments.nix#blob-path" target="_top">
&lt;neovim-flake/modules/notes/todo-comments/todo-comments.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notes.todo-comments.mappings.quickFix"></a><a class="term" href="options.html#opt-vim.notes.todo-comments.mappings.quickFix"><code class="option">vim.notes.todo-comments.mappings.quickFix</code></a></span></dt><dd><p>Open Todo-s in a quickfix list</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;tdq"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/notes/todo-comments/todo-comments.nix#blob-path" target="_top">
&lt;neovim-flake/modules/notes/todo-comments/todo-comments.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notes.todo-comments.mappings.telescope"></a><a class="term" href="options.html#opt-vim.notes.todo-comments.mappings.telescope"><code class="option">vim.notes.todo-comments.mappings.telescope</code></a></span></dt><dd><p>Open Todo-s in telescope</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;tds"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/notes/todo-comments/todo-comments.nix#blob-path" target="_top">
&lt;neovim-flake/modules/notes/todo-comments/todo-comments.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notes.todo-comments.mappings.trouble"></a><a class="term" href="options.html#opt-vim.notes.todo-comments.mappings.trouble"><code class="option">vim.notes.todo-comments.mappings.trouble</code></a></span></dt><dd><p>Open Todo-s in Trouble</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;tdt"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/notes/todo-comments/todo-comments.nix#blob-path" target="_top">
&lt;neovim-flake/modules/notes/todo-comments/todo-comments.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notes.todo-comments.patterns.highlight"></a><a class="term" href="options.html#opt-vim.notes.todo-comments.patterns.highlight"><code class="option">vim.notes.todo-comments.patterns.highlight</code></a></span></dt><dd><p>vim regex pattern used for highlighting comments</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"[[.*&lt;(KEYWORDS)(\\([^\\)]*\\))?:]]"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/notes/todo-comments/todo-comments.nix#blob-path" target="_top">
&lt;neovim-flake/modules/notes/todo-comments/todo-comments.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notes.todo-comments.patterns.search"></a><a class="term" href="options.html#opt-vim.notes.todo-comments.patterns.search"><code class="option">vim.notes.todo-comments.patterns.search</code></a></span></dt><dd><p>ripgrep regex pattern used for searching comments</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"[[\\b(KEYWORDS)(\\([^\\)]*\\))?:]]"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/notes/todo-comments/todo-comments.nix#blob-path" target="_top">
&lt;neovim-flake/modules/notes/todo-comments/todo-comments.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notify.nvim-notify.enable"></a><a class="term" href="options.html#opt-vim.notify.nvim-notify.enable"><code class="option">vim.notify.nvim-notify.enable</code></a></span></dt><dd><p>Whether to enable nvim-notify notifications.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/notifications/nvim-notify/nvim-notify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/notifications/nvim-notify/nvim-notify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notify.nvim-notify.background_colour"></a><a class="term" href="options.html#opt-vim.notify.nvim-notify.background_colour"><code class="option">vim.notify.nvim-notify.background_colour</code></a></span></dt><dd><p>The background colour of the notification</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"#000000"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/notifications/nvim-notify/nvim-notify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/notifications/nvim-notify/nvim-notify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notify.nvim-notify.icons"></a><a class="term" href="options.html#opt-vim.notify.nvim-notify.icons"><code class="option">vim.notify.nvim-notify.icons</code></a></span></dt><dd><p>The icons of the notification</p><p><span class="emphasis"><em>Type:</em></span> attribute set of string</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">{
DEBUG = "";
ERROR = "";
INFO = "";
TRACE = "";
WARN = "";
}</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/notifications/nvim-notify/nvim-notify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/notifications/nvim-notify/nvim-notify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notify.nvim-notify.position"></a><a class="term" href="options.html#opt-vim.notify.nvim-notify.position"><code class="option">vim.notify.nvim-notify.position</code></a></span></dt><dd><p>The position of the notification</p><p><span class="emphasis"><em>Type:</em></span> one of "top_left", "top_right", "bottom_left", "bottom_right"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"top_right"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/notifications/nvim-notify/nvim-notify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/notifications/nvim-notify/nvim-notify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notify.nvim-notify.stages"></a><a class="term" href="options.html#opt-vim.notify.nvim-notify.stages"><code class="option">vim.notify.nvim-notify.stages</code></a></span></dt><dd><p>The stages of the notification</p><p><span class="emphasis"><em>Type:</em></span> one of "fade_in_slide_out", "fade_in", "slide_out", "none"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"fade_in_slide_out"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/notifications/nvim-notify/nvim-notify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/notifications/nvim-notify/nvim-notify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.notify.nvim-notify.timeout"></a><a class="term" href="options.html#opt-vim.notify.nvim-notify.timeout"><code class="option">vim.notify.nvim-notify.timeout</code></a></span></dt><dd><p>The timeout of the notification</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">1000</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/notifications/nvim-notify/nvim-notify.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/notifications/nvim-notify/nvim-notify.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.optPlugins"></a><a class="term" href="options.html#opt-vim.optPlugins"><code class="option">vim.optPlugins</code></a></span></dt><dd><p>List of plugins to optionally load</p><p><span class="emphasis"><em>Type:</em></span> list of (null or one of "nvim-treesitter-context", "gitsigns-nvim", "plenary-nvim", "nvim-lspconfig", "nvim-treesitter", "lspsaga", "lspkind", "nvim-lightbulb", "lsp-signature", "nvim-tree-lua", "nvim-bufferline-lua", "lualine", "nvim-compe", "nvim-autopairs", "nvim-ts-autotag", "nvim-web-devicons", "tokyonight", "bufdelete-nvim", "nvim-cmp", "cmp-nvim-lsp", "cmp-buffer", "cmp-vsnip", "cmp-path", "cmp-treesitter", "crates-nvim", "vim-vsnip", "nvim-code-action-menu", "trouble", "null-ls", "which-key", "indent-blankline", "nvim-cursorline", "sqls-nvim", "glow-nvim", "telescope", "rust-tools", "onedark", "catppuccin", "dracula", "minimap-vim", "dashboard-nvim", "alpha-nvim", "scrollbar-nvim", "codewindow-nvim", "nvim-notify", "cinnamon-nvim", "cheatsheet-nvim", "ccc", "cellular-automaton", "presence-nvim", "icon-picker-nvim", "dressing-nvim", "orgmode-nvim", "obsidian-nvim", "vim-markdown", "tabular", "toggleterm-nvim", "noice-nvim", "nui-nvim", "copilot-lua", "tabnine-nvim", "nvim-session-manager", "gesture-nvim", "comment-nvim", "kommentary", "mind-nvim", "fidget-nvim", "diffview-nvim", "todo-comments", "flutter-tools", "flutter-tools-patched", "hop-nvim", "leap-nvim", "modes-nvim", "vim-repeat", "smartcolumn", "project-nvim", "elixir-ls", "elixir-tools", "nvim-colorizer-lua", "vim-illuminate", "nvim-surround", "nvim-dap", "nvim-dap-ui", "copilot-cmp" or package)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.presence.presence-nvim.enable"></a><a class="term" href="options.html#opt-vim.presence.presence-nvim.enable"><code class="option">vim.presence.presence-nvim.enable</code></a></span></dt><dd><p>Whether to enable presence.nvim plugin for discord rich presence.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/rich-presence/presence-nvim/presence-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/rich-presence/presence-nvim/presence-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.presence.presence-nvim.enable_line_number"></a><a class="term" href="options.html#opt-vim.presence.presence-nvim.enable_line_number"><code class="option">vim.presence.presence-nvim.enable_line_number</code></a></span></dt><dd><p>Show line number on the RPC item</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/rich-presence/presence-nvim/presence-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/rich-presence/presence-nvim/presence-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.presence.presence-nvim.auto_update"></a><a class="term" href="options.html#opt-vim.presence.presence-nvim.auto_update"><code class="option">vim.presence.presence-nvim.auto_update</code></a></span></dt><dd><p>Automatically update the presence</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/rich-presence/presence-nvim/presence-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/rich-presence/presence-nvim/presence-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.presence.presence-nvim.buttons"></a><a class="term" href="options.html#opt-vim.presence.presence-nvim.buttons"><code class="option">vim.presence.presence-nvim.buttons</code></a></span></dt><dd><p>Show buttons on the RPC item</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/rich-presence/presence-nvim/presence-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/rich-presence/presence-nvim/presence-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.presence.presence-nvim.client_id"></a><a class="term" href="options.html#opt-vim.presence.presence-nvim.client_id"><code class="option">vim.presence.presence-nvim.client_id</code></a></span></dt><dd><p>Client ID of the application</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"79327144129396737"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/rich-presence/presence-nvim/presence-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/rich-presence/presence-nvim/presence-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.presence.presence-nvim.image_text"></a><a class="term" href="options.html#opt-vim.presence.presence-nvim.image_text"><code class="option">vim.presence.presence-nvim.image_text</code></a></span></dt><dd><p>Text displayed when hovering over the Neovim image</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"The One True Text Editor"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/rich-presence/presence-nvim/presence-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/rich-presence/presence-nvim/presence-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.presence.presence-nvim.main_image"></a><a class="term" href="options.html#opt-vim.presence.presence-nvim.main_image"><code class="option">vim.presence.presence-nvim.main_image</code></a></span></dt><dd><p>Main image to be displayed</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"neovim"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/rich-presence/presence-nvim/presence-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/rich-presence/presence-nvim/presence-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.presence.presence-nvim.rich_presence.editing_text"></a><a class="term" href="options.html#opt-vim.presence.presence-nvim.rich_presence.editing_text"><code class="option">vim.presence.presence-nvim.rich_presence.editing_text</code></a></span></dt><dd><p>Text displayed when editing a file</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"Editing %s"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/rich-presence/presence-nvim/presence-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/rich-presence/presence-nvim/presence-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.presence.presence-nvim.rich_presence.file_explorer_text"></a><a class="term" href="options.html#opt-vim.presence.presence-nvim.rich_presence.file_explorer_text"><code class="option">vim.presence.presence-nvim.rich_presence.file_explorer_text</code></a></span></dt><dd><p>Text displayed when browsing files</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"Browsing %s"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/rich-presence/presence-nvim/presence-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/rich-presence/presence-nvim/presence-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.presence.presence-nvim.rich_presence.git_commit_text"></a><a class="term" href="options.html#opt-vim.presence.presence-nvim.rich_presence.git_commit_text"><code class="option">vim.presence.presence-nvim.rich_presence.git_commit_text</code></a></span></dt><dd><p>Text displayed when committing changes</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"Committing changes"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/rich-presence/presence-nvim/presence-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/rich-presence/presence-nvim/presence-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.presence.presence-nvim.rich_presence.line_number_text"></a><a class="term" href="options.html#opt-vim.presence.presence-nvim.rich_presence.line_number_text"><code class="option">vim.presence.presence-nvim.rich_presence.line_number_text</code></a></span></dt><dd><p>Text displayed when showing line number</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"Line %s out of %s"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/rich-presence/presence-nvim/presence-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/rich-presence/presence-nvim/presence-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.presence.presence-nvim.rich_presence.plugin_manager_text"></a><a class="term" href="options.html#opt-vim.presence.presence-nvim.rich_presence.plugin_manager_text"><code class="option">vim.presence.presence-nvim.rich_presence.plugin_manager_text</code></a></span></dt><dd><p>Text displayed when managing plugins</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"Managing plugins"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/rich-presence/presence-nvim/presence-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/rich-presence/presence-nvim/presence-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.presence.presence-nvim.rich_presence.reading_text"></a><a class="term" href="options.html#opt-vim.presence.presence-nvim.rich_presence.reading_text"><code class="option">vim.presence.presence-nvim.rich_presence.reading_text</code></a></span></dt><dd><p>Text displayed when reading a file</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"Reading %s"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/rich-presence/presence-nvim/presence-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/rich-presence/presence-nvim/presence-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.presence.presence-nvim.rich_presence.workspace_text"></a><a class="term" href="options.html#opt-vim.presence.presence-nvim.rich_presence.workspace_text"><code class="option">vim.presence.presence-nvim.rich_presence.workspace_text</code></a></span></dt><dd><p>Text displayed when working on a project</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"Working on %s"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/rich-presence/presence-nvim/presence-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/rich-presence/presence-nvim/presence-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.presence.presence-nvim.show_time"></a><a class="term" href="options.html#opt-vim.presence.presence-nvim.show_time"><code class="option">vim.presence.presence-nvim.show_time</code></a></span></dt><dd><p>Show time on the RPC item</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/rich-presence/presence-nvim/presence-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/rich-presence/presence-nvim/presence-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.preventJunkFiles"></a><a class="term" href="options.html#opt-vim.preventJunkFiles"><code class="option">vim.preventJunkFiles</code></a></span></dt><dd><p>Prevent swapfile, backupfile from being created</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.projects.project-nvim.enable"></a><a class="term" href="options.html#opt-vim.projects.project-nvim.enable"><code class="option">vim.projects.project-nvim.enable</code></a></span></dt><dd><p>Whether to enable Enable project-nvim for project management.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/projects/project-nvim/project-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/projects/project-nvim/project-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.projects.project-nvim.detectionMethods"></a><a class="term" href="options.html#opt-vim.projects.project-nvim.detectionMethods"><code class="option">vim.projects.project-nvim.detectionMethods</code></a></span></dt><dd><p>Detection methods to use</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">[
"lsp"
"pattern"
]</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/projects/project-nvim/project-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/projects/project-nvim/project-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.projects.project-nvim.excludeDirs"></a><a class="term" href="options.html#opt-vim.projects.project-nvim.excludeDirs"><code class="option">vim.projects.project-nvim.excludeDirs</code></a></span></dt><dd><p>Directories to exclude from project root search</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/projects/project-nvim/project-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/projects/project-nvim/project-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.projects.project-nvim.lspIgnored"></a><a class="term" href="options.html#opt-vim.projects.project-nvim.lspIgnored"><code class="option">vim.projects.project-nvim.lspIgnored</code></a></span></dt><dd><p>LSP servers no ignore by name</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/projects/project-nvim/project-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/projects/project-nvim/project-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.projects.project-nvim.manualMode"></a><a class="term" href="options.html#opt-vim.projects.project-nvim.manualMode"><code class="option">vim.projects.project-nvim.manualMode</code></a></span></dt><dd><p>don't automatically change the root directory so the user has the option to manually do so using `:ProjectRoot` command</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/projects/project-nvim/project-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/projects/project-nvim/project-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.projects.project-nvim.patterns"></a><a class="term" href="options.html#opt-vim.projects.project-nvim.patterns"><code class="option">vim.projects.project-nvim.patterns</code></a></span></dt><dd><p>Patterns to use for pattern detection method</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">[
".git"
"_darcs"
".hg"
".bzr"
".svn"
"Makefile"
"package.json"
"flake.nix"
"cargo.toml"
]</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/projects/project-nvim/project-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/projects/project-nvim/project-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.projects.project-nvim.scopeChdir"></a><a class="term" href="options.html#opt-vim.projects.project-nvim.scopeChdir"><code class="option">vim.projects.project-nvim.scopeChdir</code></a></span></dt><dd><p>What scope to change the directory</p><p><span class="emphasis"><em>Type:</em></span> one of "global", "tab", "win"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"global"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/projects/project-nvim/project-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/projects/project-nvim/project-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.projects.project-nvim.showHidden"></a><a class="term" href="options.html#opt-vim.projects.project-nvim.showHidden"><code class="option">vim.projects.project-nvim.showHidden</code></a></span></dt><dd><p>Show hidden files in telescope picker</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/projects/project-nvim/project-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/projects/project-nvim/project-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.projects.project-nvim.silentChdir"></a><a class="term" href="options.html#opt-vim.projects.project-nvim.silentChdir"><code class="option">vim.projects.project-nvim.silentChdir</code></a></span></dt><dd><p>Silently change directory when changing project</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/projects/project-nvim/project-nvim.nix#blob-path" target="_top">
&lt;neovim-flake/modules/projects/project-nvim/project-nvim.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.scrollOffset"></a><a class="term" href="options.html#opt-vim.scrollOffset"><code class="option">vim.scrollOffset</code></a></span></dt><dd><p>Start scrolling this number of lines from the top or bottom of the page.</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">8</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.session.nvim-session-manager.enable"></a><a class="term" href="options.html#opt-vim.session.nvim-session-manager.enable"><code class="option">vim.session.nvim-session-manager.enable</code></a></span></dt><dd><p>Whether to enable nvim-session-manager: manage sessions like folders in VSCode.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/session/nvim-session-manager/nvim-session-manager.nix#blob-path" target="_top">
&lt;neovim-flake/modules/session/nvim-session-manager/nvim-session-manager.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.session.nvim-session-manager.autoSave.ignoreBufTypes"></a><a class="term" href="options.html#opt-vim.session.nvim-session-manager.autoSave.ignoreBufTypes"><code class="option">vim.session.nvim-session-manager.autoSave.ignoreBufTypes</code></a></span></dt><dd><p>All buffers of these bufer types will be closed before the session is saved</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/session/nvim-session-manager/nvim-session-manager.nix#blob-path" target="_top">
&lt;neovim-flake/modules/session/nvim-session-manager/nvim-session-manager.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.session.nvim-session-manager.autoSave.ignoreDirs"></a><a class="term" href="options.html#opt-vim.session.nvim-session-manager.autoSave.ignoreDirs"><code class="option">vim.session.nvim-session-manager.autoSave.ignoreDirs</code></a></span></dt><dd><p>A list of directories where the session will not be autosaved</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/session/nvim-session-manager/nvim-session-manager.nix#blob-path" target="_top">
&lt;neovim-flake/modules/session/nvim-session-manager/nvim-session-manager.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.session.nvim-session-manager.autoSave.ignoreFiletypes"></a><a class="term" href="options.html#opt-vim.session.nvim-session-manager.autoSave.ignoreFiletypes"><code class="option">vim.session.nvim-session-manager.autoSave.ignoreFiletypes</code></a></span></dt><dd><p>All buffers of these file types will be closed before the session is saved</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">[
"gitcommit"
]</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/session/nvim-session-manager/nvim-session-manager.nix#blob-path" target="_top">
&lt;neovim-flake/modules/session/nvim-session-manager/nvim-session-manager.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.session.nvim-session-manager.autoSave.ignoreNotNormal"></a><a class="term" href="options.html#opt-vim.session.nvim-session-manager.autoSave.ignoreNotNormal"><code class="option">vim.session.nvim-session-manager.autoSave.ignoreNotNormal</code></a></span></dt><dd><p>Plugin will not save a session when no buffers are opened, or all of them aren't writable or listed</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/session/nvim-session-manager/nvim-session-manager.nix#blob-path" target="_top">
&lt;neovim-flake/modules/session/nvim-session-manager/nvim-session-manager.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.session.nvim-session-manager.autoSave.lastSession"></a><a class="term" href="options.html#opt-vim.session.nvim-session-manager.autoSave.lastSession"><code class="option">vim.session.nvim-session-manager.autoSave.lastSession</code></a></span></dt><dd><p>Automatically save last session on exit and on session switch</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/session/nvim-session-manager/nvim-session-manager.nix#blob-path" target="_top">
&lt;neovim-flake/modules/session/nvim-session-manager/nvim-session-manager.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.session.nvim-session-manager.autoSave.onlyInSession"></a><a class="term" href="options.html#opt-vim.session.nvim-session-manager.autoSave.onlyInSession"><code class="option">vim.session.nvim-session-manager.autoSave.onlyInSession</code></a></span></dt><dd><p>Always autosaves session. If true, only autosaves after a session is active</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/session/nvim-session-manager/nvim-session-manager.nix#blob-path" target="_top">
&lt;neovim-flake/modules/session/nvim-session-manager/nvim-session-manager.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.session.nvim-session-manager.autoloadMode"></a><a class="term" href="options.html#opt-vim.session.nvim-session-manager.autoloadMode"><code class="option">vim.session.nvim-session-manager.autoloadMode</code></a></span></dt><dd><p>Define what to do when Neovim is started without arguments. Possible values: Disabled, CurrentDir, LastSession</p><p><span class="emphasis"><em>Type:</em></span> one of "Disabled", "CurrentDir", "LastSession"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"LastSession"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/session/nvim-session-manager/nvim-session-manager.nix#blob-path" target="_top">
&lt;neovim-flake/modules/session/nvim-session-manager/nvim-session-manager.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.session.nvim-session-manager.colonReplacer"></a><a class="term" href="options.html#opt-vim.session.nvim-session-manager.colonReplacer"><code class="option">vim.session.nvim-session-manager.colonReplacer</code></a></span></dt><dd><p>The character to which the colon symbol will be replaced for session files</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"++"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/session/nvim-session-manager/nvim-session-manager.nix#blob-path" target="_top">
&lt;neovim-flake/modules/session/nvim-session-manager/nvim-session-manager.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.session.nvim-session-manager.mappings.deleteSession"></a><a class="term" href="options.html#opt-vim.session.nvim-session-manager.mappings.deleteSession"><code class="option">vim.session.nvim-session-manager.mappings.deleteSession</code></a></span></dt><dd><p>Delete session</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;sd"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/session/nvim-session-manager/nvim-session-manager.nix#blob-path" target="_top">
&lt;neovim-flake/modules/session/nvim-session-manager/nvim-session-manager.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.session.nvim-session-manager.mappings.loadLastSession"></a><a class="term" href="options.html#opt-vim.session.nvim-session-manager.mappings.loadLastSession"><code class="option">vim.session.nvim-session-manager.mappings.loadLastSession</code></a></span></dt><dd><p>Load last session</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;slt"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/session/nvim-session-manager/nvim-session-manager.nix#blob-path" target="_top">
&lt;neovim-flake/modules/session/nvim-session-manager/nvim-session-manager.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.session.nvim-session-manager.mappings.loadSession"></a><a class="term" href="options.html#opt-vim.session.nvim-session-manager.mappings.loadSession"><code class="option">vim.session.nvim-session-manager.mappings.loadSession</code></a></span></dt><dd><p>Load session</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;sl"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/session/nvim-session-manager/nvim-session-manager.nix#blob-path" target="_top">
&lt;neovim-flake/modules/session/nvim-session-manager/nvim-session-manager.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.session.nvim-session-manager.mappings.saveCurrentSession"></a><a class="term" href="options.html#opt-vim.session.nvim-session-manager.mappings.saveCurrentSession"><code class="option">vim.session.nvim-session-manager.mappings.saveCurrentSession</code></a></span></dt><dd><p>Save current session</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;sc"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/session/nvim-session-manager/nvim-session-manager.nix#blob-path" target="_top">
&lt;neovim-flake/modules/session/nvim-session-manager/nvim-session-manager.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.session.nvim-session-manager.maxPathLength"></a><a class="term" href="options.html#opt-vim.session.nvim-session-manager.maxPathLength"><code class="option">vim.session.nvim-session-manager.maxPathLength</code></a></span></dt><dd><p>Shorten the display path if length exceeds this threshold. Use 0 if don't want to shorten the path at all</p><p><span class="emphasis"><em>Type:</em></span> null or signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">80</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/session/nvim-session-manager/nvim-session-manager.nix#blob-path" target="_top">
&lt;neovim-flake/modules/session/nvim-session-manager/nvim-session-manager.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.session.nvim-session-manager.pathReplacer"></a><a class="term" href="options.html#opt-vim.session.nvim-session-manager.pathReplacer"><code class="option">vim.session.nvim-session-manager.pathReplacer</code></a></span></dt><dd><p>The character to which the path separator will be replaced for session files</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"__"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/session/nvim-session-manager/nvim-session-manager.nix#blob-path" target="_top">
&lt;neovim-flake/modules/session/nvim-session-manager/nvim-session-manager.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.session.nvim-session-manager.usePicker"></a><a class="term" href="options.html#opt-vim.session.nvim-session-manager.usePicker"><code class="option">vim.session.nvim-session-manager.usePicker</code></a></span></dt><dd><p>Whether or not we should use dressing.nvim to build a session picker UI</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/session/nvim-session-manager/nvim-session-manager.nix#blob-path" target="_top">
&lt;neovim-flake/modules/session/nvim-session-manager/nvim-session-manager.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.showSignColumn"></a><a class="term" href="options.html#opt-vim.showSignColumn"><code class="option">vim.showSignColumn</code></a></span></dt><dd><p>Show the sign column</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.snippets.vsnip.enable"></a><a class="term" href="options.html#opt-vim.snippets.vsnip.enable"><code class="option">vim.snippets.vsnip.enable</code></a></span></dt><dd><p>Whether to enable vim-vsnip: snippet LSP/VSCode's format.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/snippets/vsnip/vsnip.nix#blob-path" target="_top">
&lt;neovim-flake/modules/snippets/vsnip/vsnip.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.spellChecking.enable"></a><a class="term" href="options.html#opt-vim.spellChecking.enable"><code class="option">vim.spellChecking.enable</code></a></span></dt><dd><p>Whether to enable neovim's built-in spellchecking.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.spellChecking.language"></a><a class="term" href="options.html#opt-vim.spellChecking.language"><code class="option">vim.spellChecking.language</code></a></span></dt><dd><p>The language to be used for spellchecking</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"en_US"</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">"de"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.splitBelow"></a><a class="term" href="options.html#opt-vim.splitBelow"><code class="option">vim.splitBelow</code></a></span></dt><dd><p>New splits will open below instead of on top</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.splitRight"></a><a class="term" href="options.html#opt-vim.splitRight"><code class="option">vim.splitRight</code></a></span></dt><dd><p>New splits will open to the right</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.startPlugins"></a><a class="term" href="options.html#opt-vim.startPlugins"><code class="option">vim.startPlugins</code></a></span></dt><dd><p>List of plugins to startup.</p><p><span class="emphasis"><em>Type:</em></span> list of (null or one of "nvim-treesitter-context", "gitsigns-nvim", "plenary-nvim", "nvim-lspconfig", "nvim-treesitter", "lspsaga", "lspkind", "nvim-lightbulb", "lsp-signature", "nvim-tree-lua", "nvim-bufferline-lua", "lualine", "nvim-compe", "nvim-autopairs", "nvim-ts-autotag", "nvim-web-devicons", "tokyonight", "bufdelete-nvim", "nvim-cmp", "cmp-nvim-lsp", "cmp-buffer", "cmp-vsnip", "cmp-path", "cmp-treesitter", "crates-nvim", "vim-vsnip", "nvim-code-action-menu", "trouble", "null-ls", "which-key", "indent-blankline", "nvim-cursorline", "sqls-nvim", "glow-nvim", "telescope", "rust-tools", "onedark", "catppuccin", "dracula", "minimap-vim", "dashboard-nvim", "alpha-nvim", "scrollbar-nvim", "codewindow-nvim", "nvim-notify", "cinnamon-nvim", "cheatsheet-nvim", "ccc", "cellular-automaton", "presence-nvim", "icon-picker-nvim", "dressing-nvim", "orgmode-nvim", "obsidian-nvim", "vim-markdown", "tabular", "toggleterm-nvim", "noice-nvim", "nui-nvim", "copilot-lua", "tabnine-nvim", "nvim-session-manager", "gesture-nvim", "comment-nvim", "kommentary", "mind-nvim", "fidget-nvim", "diffview-nvim", "todo-comments", "flutter-tools", "flutter-tools-patched", "hop-nvim", "leap-nvim", "modes-nvim", "vim-repeat", "smartcolumn", "project-nvim", "elixir-ls", "elixir-tools", "nvim-colorizer-lua", "vim-illuminate", "nvim-surround", "nvim-dap", "nvim-dap-ui", "copilot-cmp" or package)</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.enable"></a><a class="term" href="options.html#opt-vim.statusline.lualine.enable"><code class="option">vim.statusline.lualine.enable</code></a></span></dt><dd><p>Whether to enable lualine statusline plugin.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.activeSection.a"></a><a class="term" href="options.html#opt-vim.statusline.lualine.activeSection.a"><code class="option">vim.statusline.lualine.activeSection.a</code></a></span></dt><dd><p>active config for: | (A) | B | C X | Y | Z |</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">''
{
{
"mode",
icons_enabled = true,
separator = {
left = '▎',
right = ''
},
},
}
''</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.activeSection.b"></a><a class="term" href="options.html#opt-vim.statusline.lualine.activeSection.b"><code class="option">vim.statusline.lualine.activeSection.b</code></a></span></dt><dd><p>active config for: | A | (B) | C X | Y | Z |</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">''
{
{
"filetype",
colored = true,
icon_only = true,
icon = { align = 'left' },
color = {bg='none', fg='lavender'},
},
{
"filename",
color = {bg='none'},
symbols = {modified = '', readonly = ''},
},
}
''</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.activeSection.c"></a><a class="term" href="options.html#opt-vim.statusline.lualine.activeSection.c"><code class="option">vim.statusline.lualine.activeSection.c</code></a></span></dt><dd><p>active config for: | A | B | (C) X | Y | Z |</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">''
{
{
"diff",
colored = false,
diff_color = {
-- Same color values as the general color option can be used here.
added = 'DiffAdd', -- Changes the diff's added color
modified = 'DiffChange', -- Changes the diff's modified color
removed = 'DiffDelete', -- Changes the diff's removed color you
},
symbols = {added = '+', modified = '~', removed = '-'}, -- Changes the diff symbols
color = {
bg='none',
fg='lavender'
},
},
}
''</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.activeSection.x"></a><a class="term" href="options.html#opt-vim.statusline.lualine.activeSection.x"><code class="option">vim.statusline.lualine.activeSection.x</code></a></span></dt><dd><p>active config for: | A | B | C (X) | Y | Z |</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">''
{
{
-- Lsp server name .
function()
local msg = 'No Active Lsp'
local buf_ft = vim.api.nvim_buf_get_option(0, 'filetype')
local clients = vim.lsp.get_active_clients()
if next(clients) == nil then
return msg
end
for _, client in ipairs(clients) do
local filetypes = client.config.filetypes
if filetypes and vim.fn.index(filetypes, buf_ft) ~= -1 then
return client.name
end
end
return msg
end,
icon = ' ',
},
{
"diagnostics",
sources = {'nvim_lsp', 'nvim_diagnostic', 'coc'},
symbols = {error = '󰅙 ', warn = ' ', info = ' ', hint = '󰌵 '},
diagnostics_color = {
color_error = { fg = 'red' },
color_warn = { fg = 'yellow' },
color_info = { fg = 'cyan' },
},
},
}
''</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.activeSection.y"></a><a class="term" href="options.html#opt-vim.statusline.lualine.activeSection.y"><code class="option">vim.statusline.lualine.activeSection.y</code></a></span></dt><dd><p>active config for: | A | B | C X | (Y) | Z |</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">''
{
{
'searchcount',
maxcount = 999,
timeout = 120,
color = {bg='none', fg='lavender'}
},
{
"branch",
icon = ' •',
color = {bg='none', fg='lavender'},
},
}
''</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.activeSection.z"></a><a class="term" href="options.html#opt-vim.statusline.lualine.activeSection.z"><code class="option">vim.statusline.lualine.activeSection.z</code></a></span></dt><dd><p>active config for: | A | B | C X | Y | (Z) |</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">''
{
{
"progress",
separator = {
left = '',
},
},
{
"location",
},
{
"fileformat",
color = {fg='black'},
symbols = {
unix = '', -- e712
dos = '', -- e70f
mac = '', -- e711
},
},
}
''</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.componentSeparator.left"></a><a class="term" href="options.html#opt-vim.statusline.lualine.componentSeparator.left"><code class="option">vim.statusline.lualine.componentSeparator.left</code></a></span></dt><dd><p>Component separator for left side</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.componentSeparator.right"></a><a class="term" href="options.html#opt-vim.statusline.lualine.componentSeparator.right"><code class="option">vim.statusline.lualine.componentSeparator.right</code></a></span></dt><dd><p>Component separator for right side</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.globalStatus"></a><a class="term" href="options.html#opt-vim.statusline.lualine.globalStatus"><code class="option">vim.statusline.lualine.globalStatus</code></a></span></dt><dd><p>Enable global status for lualine</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.icons.enable"></a><a class="term" href="options.html#opt-vim.statusline.lualine.icons.enable"><code class="option">vim.statusline.lualine.icons.enable</code></a></span></dt><dd><p>Whether to enable icons for lualine.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.inactiveSection.a"></a><a class="term" href="options.html#opt-vim.statusline.lualine.inactiveSection.a"><code class="option">vim.statusline.lualine.inactiveSection.a</code></a></span></dt><dd><p>inactive config for: | (A) | B | C X | Y | Z |</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"{}"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.inactiveSection.b"></a><a class="term" href="options.html#opt-vim.statusline.lualine.inactiveSection.b"><code class="option">vim.statusline.lualine.inactiveSection.b</code></a></span></dt><dd><p>inactive config for: | A | (B) | C X | Y | Z |</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"{}"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.inactiveSection.c"></a><a class="term" href="options.html#opt-vim.statusline.lualine.inactiveSection.c"><code class="option">vim.statusline.lualine.inactiveSection.c</code></a></span></dt><dd><p>inactive config for: | A | B | (C) X | Y | Z |</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"{'filename'}"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.inactiveSection.x"></a><a class="term" href="options.html#opt-vim.statusline.lualine.inactiveSection.x"><code class="option">vim.statusline.lualine.inactiveSection.x</code></a></span></dt><dd><p>inactive config for: | A | B | C (X) | Y | Z |</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"{'location'}"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.inactiveSection.y"></a><a class="term" href="options.html#opt-vim.statusline.lualine.inactiveSection.y"><code class="option">vim.statusline.lualine.inactiveSection.y</code></a></span></dt><dd><p>inactive config for: | A | B | C X | (Y) | Z |</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"{}"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.inactiveSection.z"></a><a class="term" href="options.html#opt-vim.statusline.lualine.inactiveSection.z"><code class="option">vim.statusline.lualine.inactiveSection.z</code></a></span></dt><dd><p>inactive config for: | A | B | C X | Y | (Z) |</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"{}"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.refresh.statusline"></a><a class="term" href="options.html#opt-vim.statusline.lualine.refresh.statusline"><code class="option">vim.statusline.lualine.refresh.statusline</code></a></span></dt><dd><p>Refresh rate for lualine</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">1000</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.refresh.tabline"></a><a class="term" href="options.html#opt-vim.statusline.lualine.refresh.tabline"><code class="option">vim.statusline.lualine.refresh.tabline</code></a></span></dt><dd><p>Refresh rate for tabline</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">1000</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.refresh.winbar"></a><a class="term" href="options.html#opt-vim.statusline.lualine.refresh.winbar"><code class="option">vim.statusline.lualine.refresh.winbar</code></a></span></dt><dd><p>Refresh rate for winbar</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">1000</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.sectionSeparator.left"></a><a class="term" href="options.html#opt-vim.statusline.lualine.sectionSeparator.left"><code class="option">vim.statusline.lualine.sectionSeparator.left</code></a></span></dt><dd><p>Section separator for left side</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.sectionSeparator.right"></a><a class="term" href="options.html#opt-vim.statusline.lualine.sectionSeparator.right"><code class="option">vim.statusline.lualine.sectionSeparator.right</code></a></span></dt><dd><p>Section separator for right side</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">""</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.statusline.lualine.theme"></a><a class="term" href="options.html#opt-vim.statusline.lualine.theme"><code class="option">vim.statusline.lualine.theme</code></a></span></dt><dd><p>Theme for lualine</p><p><span class="emphasis"><em>Type:</em></span> one of "auto", "16color", "gruvbox", "ayu_dark", "ayu_light", "ayu_mirage", "codedark", "dracula", "everforest", "gruvbox", "gruvbox_light", "gruvbox_material", "horizon", "iceberg_dark", "iceberg_light", "jellybeans", "material", "modus_vivendi", "molokai", "nightfly", "nord", "oceanicnext", "onelight", "palenight", "papercolor_dark", "papercolor_light", "powerline", "seoul256", "solarized_dark", "tomorrow", "wombat", "onedark"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">config.vim.theme.name</code> if theme supports lualine else "auto"</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/statusline/lualine/lualine.nix#blob-path" target="_top">
&lt;neovim-flake/modules/statusline/lualine/lualine.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.syntaxHighlighting"></a><a class="term" href="options.html#opt-vim.syntaxHighlighting"><code class="option">vim.syntaxHighlighting</code></a></span></dt><dd><p>Enable syntax highlighting</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.tabWidth"></a><a class="term" href="options.html#opt-vim.tabWidth"><code class="option">vim.tabWidth</code></a></span></dt><dd><p>Set the width of tabs</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">4</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.tabline.nvimBufferline.enable"></a><a class="term" href="options.html#opt-vim.tabline.nvimBufferline.enable"><code class="option">vim.tabline.nvimBufferline.enable</code></a></span></dt><dd><p>Whether to enable nvim-bufferline-lua as a bufferline.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/tabline/nvim-bufferline/nvim-bufferline.nix#blob-path" target="_top">
&lt;neovim-flake/modules/tabline/nvim-bufferline/nvim-bufferline.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.tabline.nvimBufferline.mappings.closeCurrent"></a><a class="term" href="options.html#opt-vim.tabline.nvimBufferline.mappings.closeCurrent"><code class="option">vim.tabline.nvimBufferline.mappings.closeCurrent</code></a></span></dt><dd><p>Close buffer</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/tabline/nvim-bufferline/nvim-bufferline.nix#blob-path" target="_top">
&lt;neovim-flake/modules/tabline/nvim-bufferline/nvim-bufferline.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.tabline.nvimBufferline.mappings.cycleNext"></a><a class="term" href="options.html#opt-vim.tabline.nvimBufferline.mappings.cycleNext"><code class="option">vim.tabline.nvimBufferline.mappings.cycleNext</code></a></span></dt><dd><p>Next buffer</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;bn"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/tabline/nvim-bufferline/nvim-bufferline.nix#blob-path" target="_top">
&lt;neovim-flake/modules/tabline/nvim-bufferline/nvim-bufferline.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.tabline.nvimBufferline.mappings.cyclePrevious"></a><a class="term" href="options.html#opt-vim.tabline.nvimBufferline.mappings.cyclePrevious"><code class="option">vim.tabline.nvimBufferline.mappings.cyclePrevious</code></a></span></dt><dd><p>Previous buffer</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;bp"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/tabline/nvim-bufferline/nvim-bufferline.nix#blob-path" target="_top">
&lt;neovim-flake/modules/tabline/nvim-bufferline/nvim-bufferline.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.tabline.nvimBufferline.mappings.moveNext"></a><a class="term" href="options.html#opt-vim.tabline.nvimBufferline.mappings.moveNext"><code class="option">vim.tabline.nvimBufferline.mappings.moveNext</code></a></span></dt><dd><p>Move next buffer</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;bmn"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/tabline/nvim-bufferline/nvim-bufferline.nix#blob-path" target="_top">
&lt;neovim-flake/modules/tabline/nvim-bufferline/nvim-bufferline.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.tabline.nvimBufferline.mappings.movePrevious"></a><a class="term" href="options.html#opt-vim.tabline.nvimBufferline.mappings.movePrevious"><code class="option">vim.tabline.nvimBufferline.mappings.movePrevious</code></a></span></dt><dd><p>Move previous buffer</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;bmp"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/tabline/nvim-bufferline/nvim-bufferline.nix#blob-path" target="_top">
&lt;neovim-flake/modules/tabline/nvim-bufferline/nvim-bufferline.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.tabline.nvimBufferline.mappings.pick"></a><a class="term" href="options.html#opt-vim.tabline.nvimBufferline.mappings.pick"><code class="option">vim.tabline.nvimBufferline.mappings.pick</code></a></span></dt><dd><p>Pick buffer</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;bc"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/tabline/nvim-bufferline/nvim-bufferline.nix#blob-path" target="_top">
&lt;neovim-flake/modules/tabline/nvim-bufferline/nvim-bufferline.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.tabline.nvimBufferline.mappings.sortByDirectory"></a><a class="term" href="options.html#opt-vim.tabline.nvimBufferline.mappings.sortByDirectory"><code class="option">vim.tabline.nvimBufferline.mappings.sortByDirectory</code></a></span></dt><dd><p>Sort buffers by directory</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;bsd"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/tabline/nvim-bufferline/nvim-bufferline.nix#blob-path" target="_top">
&lt;neovim-flake/modules/tabline/nvim-bufferline/nvim-bufferline.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.tabline.nvimBufferline.mappings.sortByExtension"></a><a class="term" href="options.html#opt-vim.tabline.nvimBufferline.mappings.sortByExtension"><code class="option">vim.tabline.nvimBufferline.mappings.sortByExtension</code></a></span></dt><dd><p>Sort buffers by extension</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;bse"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/tabline/nvim-bufferline/nvim-bufferline.nix#blob-path" target="_top">
&lt;neovim-flake/modules/tabline/nvim-bufferline/nvim-bufferline.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.tabline.nvimBufferline.mappings.sortById"></a><a class="term" href="options.html#opt-vim.tabline.nvimBufferline.mappings.sortById"><code class="option">vim.tabline.nvimBufferline.mappings.sortById</code></a></span></dt><dd><p>Sort buffers by ID</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;bsi"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/tabline/nvim-bufferline/nvim-bufferline.nix#blob-path" target="_top">
&lt;neovim-flake/modules/tabline/nvim-bufferline/nvim-bufferline.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.enable"></a><a class="term" href="options.html#opt-vim.telescope.enable"><code class="option">vim.telescope.enable</code></a></span></dt><dd><p>Whether to enable telescope.nvim: multi-purpose search and picker utility.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.buffers"></a><a class="term" href="options.html#opt-vim.telescope.mappings.buffers"><code class="option">vim.telescope.mappings.buffers</code></a></span></dt><dd><p>Buffers [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;fb"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.diagnostics"></a><a class="term" href="options.html#opt-vim.telescope.mappings.diagnostics"><code class="option">vim.telescope.mappings.diagnostics</code></a></span></dt><dd><p>Diagnostics [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;fld"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.findFiles"></a><a class="term" href="options.html#opt-vim.telescope.mappings.findFiles"><code class="option">vim.telescope.mappings.findFiles</code></a></span></dt><dd><p>Find files [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;ff"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.findProjects"></a><a class="term" href="options.html#opt-vim.telescope.mappings.findProjects"><code class="option">vim.telescope.mappings.findProjects</code></a></span></dt><dd><p>Find files [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;fp"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.gitBranches"></a><a class="term" href="options.html#opt-vim.telescope.mappings.gitBranches"><code class="option">vim.telescope.mappings.gitBranches</code></a></span></dt><dd><p>Git branches [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;fvb"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.gitBufferCommits"></a><a class="term" href="options.html#opt-vim.telescope.mappings.gitBufferCommits"><code class="option">vim.telescope.mappings.gitBufferCommits</code></a></span></dt><dd><p>Git buffer commits [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;fvcb"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.gitCommits"></a><a class="term" href="options.html#opt-vim.telescope.mappings.gitCommits"><code class="option">vim.telescope.mappings.gitCommits</code></a></span></dt><dd><p>Git commits [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;fvcw"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.gitStash"></a><a class="term" href="options.html#opt-vim.telescope.mappings.gitStash"><code class="option">vim.telescope.mappings.gitStash</code></a></span></dt><dd><p>Git stash [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;fvx"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.gitStatus"></a><a class="term" href="options.html#opt-vim.telescope.mappings.gitStatus"><code class="option">vim.telescope.mappings.gitStatus</code></a></span></dt><dd><p>Git status [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;fvs"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.helpTags"></a><a class="term" href="options.html#opt-vim.telescope.mappings.helpTags"><code class="option">vim.telescope.mappings.helpTags</code></a></span></dt><dd><p>Help tags [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;fh"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.liveGrep"></a><a class="term" href="options.html#opt-vim.telescope.mappings.liveGrep"><code class="option">vim.telescope.mappings.liveGrep</code></a></span></dt><dd><p>Live grep [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;fg"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.lspDefinitions"></a><a class="term" href="options.html#opt-vim.telescope.mappings.lspDefinitions"><code class="option">vim.telescope.mappings.lspDefinitions</code></a></span></dt><dd><p>LSP Definitions [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;flD"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.lspDocumentSymbols"></a><a class="term" href="options.html#opt-vim.telescope.mappings.lspDocumentSymbols"><code class="option">vim.telescope.mappings.lspDocumentSymbols</code></a></span></dt><dd><p>LSP Document Symbols [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;flsb"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.lspImplementations"></a><a class="term" href="options.html#opt-vim.telescope.mappings.lspImplementations"><code class="option">vim.telescope.mappings.lspImplementations</code></a></span></dt><dd><p>LSP Implementations [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;fli"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.lspReferences"></a><a class="term" href="options.html#opt-vim.telescope.mappings.lspReferences"><code class="option">vim.telescope.mappings.lspReferences</code></a></span></dt><dd><p>LSP References [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;flr"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.lspTypeDefinitions"></a><a class="term" href="options.html#opt-vim.telescope.mappings.lspTypeDefinitions"><code class="option">vim.telescope.mappings.lspTypeDefinitions</code></a></span></dt><dd><p>LSP Type Definitions [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;flt"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.lspWorkspaceSymbols"></a><a class="term" href="options.html#opt-vim.telescope.mappings.lspWorkspaceSymbols"><code class="option">vim.telescope.mappings.lspWorkspaceSymbols</code></a></span></dt><dd><p>LSP Workspace Symbols [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;flsw"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.open"></a><a class="term" href="options.html#opt-vim.telescope.mappings.open"><code class="option">vim.telescope.mappings.open</code></a></span></dt><dd><p>Open [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;ft"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.telescope.mappings.treesitter"></a><a class="term" href="options.html#opt-vim.telescope.mappings.treesitter"><code class="option">vim.telescope.mappings.treesitter</code></a></span></dt><dd><p>Treesitter [Telescope]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;fs"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/telescope/telescope.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/telescope/telescope.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.terminal.toggleterm.enable"></a><a class="term" href="options.html#opt-vim.terminal.toggleterm.enable"><code class="option">vim.terminal.toggleterm.enable</code></a></span></dt><dd><p>Whether to enable Enable toggleterm as a replacement to built-in terminal command.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/terminal/toggleterm/toggleterm.nix#blob-path" target="_top">
&lt;neovim-flake/modules/terminal/toggleterm/toggleterm.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.terminal.toggleterm.enable_winbar"></a><a class="term" href="options.html#opt-vim.terminal.toggleterm.enable_winbar"><code class="option">vim.terminal.toggleterm.enable_winbar</code></a></span></dt><dd><p>Enable winbar</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/terminal/toggleterm/toggleterm.nix#blob-path" target="_top">
&lt;neovim-flake/modules/terminal/toggleterm/toggleterm.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.terminal.toggleterm.direction"></a><a class="term" href="options.html#opt-vim.terminal.toggleterm.direction"><code class="option">vim.terminal.toggleterm.direction</code></a></span></dt><dd><p>Direction of the terminal</p><p><span class="emphasis"><em>Type:</em></span> one of "horizontal", "vertical", "tab", "float"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"horizontal"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/terminal/toggleterm/toggleterm.nix#blob-path" target="_top">
&lt;neovim-flake/modules/terminal/toggleterm/toggleterm.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.terminal.toggleterm.lazygit.enable"></a><a class="term" href="options.html#opt-vim.terminal.toggleterm.lazygit.enable"><code class="option">vim.terminal.toggleterm.lazygit.enable</code></a></span></dt><dd><p>Whether to enable LazyGit integration.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/terminal/toggleterm/toggleterm.nix#blob-path" target="_top">
&lt;neovim-flake/modules/terminal/toggleterm/toggleterm.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.terminal.toggleterm.lazygit.package"></a><a class="term" href="options.html#opt-vim.terminal.toggleterm.lazygit.package"><code class="option">vim.terminal.toggleterm.lazygit.package</code></a></span></dt><dd><p>The package that should be used for lazygit. Setting it to null will attempt to use lazygit from your PATH</p><p><span class="emphasis"><em>Type:</em></span> null or package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation lazygit-0.38.2&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/terminal/toggleterm/toggleterm.nix#blob-path" target="_top">
&lt;neovim-flake/modules/terminal/toggleterm/toggleterm.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.terminal.toggleterm.lazygit.direction"></a><a class="term" href="options.html#opt-vim.terminal.toggleterm.lazygit.direction"><code class="option">vim.terminal.toggleterm.lazygit.direction</code></a></span></dt><dd><p>Direction of the lazygit window</p><p><span class="emphasis"><em>Type:</em></span> one of "horizontal", "vertical", "tab", "float"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"float"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/terminal/toggleterm/toggleterm.nix#blob-path" target="_top">
&lt;neovim-flake/modules/terminal/toggleterm/toggleterm.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.terminal.toggleterm.lazygit.mappings.open"></a><a class="term" href="options.html#opt-vim.terminal.toggleterm.lazygit.mappings.open"><code class="option">vim.terminal.toggleterm.lazygit.mappings.open</code></a></span></dt><dd><p>Open lazygit [toggleterm]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;gg"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/terminal/toggleterm/toggleterm.nix#blob-path" target="_top">
&lt;neovim-flake/modules/terminal/toggleterm/toggleterm.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.terminal.toggleterm.mappings.open"></a><a class="term" href="options.html#opt-vim.terminal.toggleterm.mappings.open"><code class="option">vim.terminal.toggleterm.mappings.open</code></a></span></dt><dd><p>The keymapping to open toggleterm</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;c-t&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/terminal/toggleterm/toggleterm.nix#blob-path" target="_top">
&lt;neovim-flake/modules/terminal/toggleterm/toggleterm.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.theme.enable"></a><a class="term" href="options.html#opt-vim.theme.enable"><code class="option">vim.theme.enable</code></a></span></dt><dd><p>Enable theming</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/theme/theme.nix#blob-path" target="_top">
&lt;neovim-flake/modules/theme/theme.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.theme.extraConfig"></a><a class="term" href="options.html#opt-vim.theme.extraConfig"><code class="option">vim.theme.extraConfig</code></a></span></dt><dd><p>Additional lua configuration to add before setup</p><p><span class="emphasis"><em>Type:</em></span> strings concatenated with "\n"</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/theme/theme.nix#blob-path" target="_top">
&lt;neovim-flake/modules/theme/theme.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.theme.name"></a><a class="term" href="options.html#opt-vim.theme.name"><code class="option">vim.theme.name</code></a></span></dt><dd><p>Supported themes can be found in `supported_themes.nix`</p><p><span class="emphasis"><em>Type:</em></span> one of "catppuccin", "dracula", "onedark", "tokyonight"</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/theme/theme.nix#blob-path" target="_top">
&lt;neovim-flake/modules/theme/theme.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.theme.style"></a><a class="term" href="options.html#opt-vim.theme.style"><code class="option">vim.theme.style</code></a></span></dt><dd><p>Specific style for theme if it supports it</p><p><span class="emphasis"><em>Type:</em></span> one of "dark", "darker", "cool", "deep", "warm", "warmer"</p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/theme/theme.nix#blob-path" target="_top">
&lt;neovim-flake/modules/theme/theme.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.theme.transparent"></a><a class="term" href="options.html#opt-vim.theme.transparent"><code class="option">vim.theme.transparent</code></a></span></dt><dd><p>Whether or not transparency should be enabled. Has no effect for themes that do not support transparency</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/theme/theme.nix#blob-path" target="_top">
&lt;neovim-flake/modules/theme/theme.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.tidal.enable"></a><a class="term" href="options.html#opt-vim.tidal.enable"><code class="option">vim.tidal.enable</code></a></span></dt><dd><p>Whether to enable tidalcycles tools and plugins.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/tidal/tidal.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/tidal/tidal.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.tidal.flash"></a><a class="term" href="options.html#opt-vim.tidal.flash"><code class="option">vim.tidal.flash</code></a></span></dt><dd><p>When sending a paragraph or a single line, vim-tidal will "flash" the selection for some milliseconds</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">150</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/tidal/tidal.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/tidal/tidal.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.tidal.openSC"></a><a class="term" href="options.html#opt-vim.tidal.openSC"><code class="option">vim.tidal.openSC</code></a></span></dt><dd><p>Automatically run the supercollider CLI, sclang, alongside the Tidal GHCI terminal.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/languages/tidal/tidal.nix#blob-path" target="_top">
&lt;neovim-flake/modules/languages/tidal/tidal.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.enable"></a><a class="term" href="options.html#opt-vim.treesitter.enable"><code class="option">vim.treesitter.enable</code></a></span></dt><dd><p>Whether to enable treesitter, also enabled automatically through language options.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/treesitter.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/treesitter.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.autotagHtml"></a><a class="term" href="options.html#opt-vim.treesitter.autotagHtml"><code class="option">vim.treesitter.autotagHtml</code></a></span></dt><dd><p>Whether to enable autoclose and rename html tag.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/treesitter.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/treesitter.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.context.enable"></a><a class="term" href="options.html#opt-vim.treesitter.context.enable"><code class="option">vim.treesitter.context.enable</code></a></span></dt><dd><p>Whether to enable context of current buffer contents [nvim-treesitter-context] .</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/context.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/context.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.context.lineNumbers"></a><a class="term" href="options.html#opt-vim.treesitter.context.lineNumbers"><code class="option">vim.treesitter.context.lineNumbers</code></a></span></dt><dd><p></p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/context.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/context.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.context.maxLines"></a><a class="term" href="options.html#opt-vim.treesitter.context.maxLines"><code class="option">vim.treesitter.context.maxLines</code></a></span></dt><dd><p>How many lines the window should span. Values &lt;=0 mean no limit.</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">0</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/context.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/context.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.context.minWindowHeight"></a><a class="term" href="options.html#opt-vim.treesitter.context.minWindowHeight"><code class="option">vim.treesitter.context.minWindowHeight</code></a></span></dt><dd><p>Minimum editor window height to enable context. Values &lt;= 0 mean no limit.</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">0</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/context.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/context.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.context.mode"></a><a class="term" href="options.html#opt-vim.treesitter.context.mode"><code class="option">vim.treesitter.context.mode</code></a></span></dt><dd><p>Line used to calculate context.</p><p><span class="emphasis"><em>Type:</em></span> one of "cursor", "topline"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"cursor"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/context.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/context.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.context.multilineThreshold"></a><a class="term" href="options.html#opt-vim.treesitter.context.multilineThreshold"><code class="option">vim.treesitter.context.multilineThreshold</code></a></span></dt><dd><p>Maximum number of lines to collapse for a single context line.</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">20</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/context.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/context.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.context.separator"></a><a class="term" href="options.html#opt-vim.treesitter.context.separator"><code class="option">vim.treesitter.context.separator</code></a></span></dt><dd><p class="simpara">Separator between context and content. Should be a single character string, like <span class="emphasis"><em>-</em></span>.</p><p class="simpara">When separator is set, the context will only show up when there are at least 2 lines above cursorline.</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/context.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/context.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.context.trimScope"></a><a class="term" href="options.html#opt-vim.treesitter.context.trimScope"><code class="option">vim.treesitter.context.trimScope</code></a></span></dt><dd><p class="simpara">Which context lines to discard if <a class="xref" href="options.html#opt-vim.treesitter.context.maxLines"><code class="option">vim.treesitter.context.maxLines</code></a> is exceeded.</p><p><span class="emphasis"><em>Type:</em></span> one of "inner", "outer"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"outer"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/context.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/context.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.context.zindex"></a><a class="term" href="options.html#opt-vim.treesitter.context.zindex"><code class="option">vim.treesitter.context.zindex</code></a></span></dt><dd><p>The Z-index of the context window.</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">20</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/context.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/context.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.fold"></a><a class="term" href="options.html#opt-vim.treesitter.fold"><code class="option">vim.treesitter.fold</code></a></span></dt><dd><p>Whether to enable fold with treesitter.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/treesitter.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/treesitter.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.grammars"></a><a class="term" href="options.html#opt-vim.treesitter.grammars"><code class="option">vim.treesitter.grammars</code></a></span></dt><dd><p class="simpara">List of treesitter grammars to install. For supported languages
use the <code class="literal">vim.language.&lt;lang&gt;.treesitter</code> option</p><p><span class="emphasis"><em>Type:</em></span> list of package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">[ ]</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/treesitter.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/treesitter.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.mappings.incrementalSelection.decrementByNode"></a><a class="term" href="options.html#opt-vim.treesitter.mappings.incrementalSelection.decrementByNode"><code class="option">vim.treesitter.mappings.incrementalSelection.decrementByNode</code></a></span></dt><dd><p>Decrement selection by node [treesitter]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"grm"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/treesitter.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/treesitter.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.mappings.incrementalSelection.incrementByNode"></a><a class="term" href="options.html#opt-vim.treesitter.mappings.incrementalSelection.incrementByNode"><code class="option">vim.treesitter.mappings.incrementalSelection.incrementByNode</code></a></span></dt><dd><p>Increment selection by node [treesitter]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"grn"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/treesitter.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/treesitter.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.mappings.incrementalSelection.incrementByScope"></a><a class="term" href="options.html#opt-vim.treesitter.mappings.incrementalSelection.incrementByScope"><code class="option">vim.treesitter.mappings.incrementalSelection.incrementByScope</code></a></span></dt><dd><p>Increment selection by scope [treesitter]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"grc"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/treesitter.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/treesitter.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.treesitter.mappings.incrementalSelection.init"></a><a class="term" href="options.html#opt-vim.treesitter.mappings.incrementalSelection.init"><code class="option">vim.treesitter.mappings.incrementalSelection.init</code></a></span></dt><dd><p>Init selection [treesitter]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"gnn"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/treesitter/treesitter.nix#blob-path" target="_top">
&lt;neovim-flake/modules/treesitter/treesitter.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.colorizer.enable"></a><a class="term" href="options.html#opt-vim.ui.colorizer.enable"><code class="option">vim.ui.colorizer.enable</code></a></span></dt><dd><p>Whether to enable nvim-colorizer.lua for color highlighting.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/colorizer/colorizer.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/colorizer/colorizer.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.colorizer.options.css"></a><a class="term" href="options.html#opt-vim.ui.colorizer.options.css"><code class="option">vim.ui.colorizer.options.css</code></a></span></dt><dd><p>Enable all CSS features: rgb_fn, hsl_fn, names, RGB, RRGGBB</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/colorizer/colorizer.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/colorizer/colorizer.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.colorizer.options.css_fn"></a><a class="term" href="options.html#opt-vim.ui.colorizer.options.css_fn"><code class="option">vim.ui.colorizer.options.css_fn</code></a></span></dt><dd><p>Enable all CSS *functions*: rgb_fn, hsl_fn</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/colorizer/colorizer.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/colorizer/colorizer.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.colorizer.options.hsl_fn"></a><a class="term" href="options.html#opt-vim.ui.colorizer.options.hsl_fn"><code class="option">vim.ui.colorizer.options.hsl_fn</code></a></span></dt><dd><p>CSS hsl() and hsla() functions</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/colorizer/colorizer.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/colorizer/colorizer.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.colorizer.options.mode"></a><a class="term" href="options.html#opt-vim.ui.colorizer.options.mode"><code class="option">vim.ui.colorizer.options.mode</code></a></span></dt><dd><p>Set the display mode</p><p><span class="emphasis"><em>Type:</em></span> one of "foreground", "background"</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"background"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/colorizer/colorizer.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/colorizer/colorizer.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.colorizer.options.names"></a><a class="term" href="options.html#opt-vim.ui.colorizer.options.names"><code class="option">vim.ui.colorizer.options.names</code></a></span></dt><dd><p>"Name" codes such as "Blue"</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/colorizer/colorizer.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/colorizer/colorizer.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.colorizer.options.rgb"></a><a class="term" href="options.html#opt-vim.ui.colorizer.options.rgb"><code class="option">vim.ui.colorizer.options.rgb</code></a></span></dt><dd><p>#RGB hex codes</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/colorizer/colorizer.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/colorizer/colorizer.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.colorizer.options.rgb_fn"></a><a class="term" href="options.html#opt-vim.ui.colorizer.options.rgb_fn"><code class="option">vim.ui.colorizer.options.rgb_fn</code></a></span></dt><dd><p>CSS rgb() and rgba() functions</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/colorizer/colorizer.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/colorizer/colorizer.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.colorizer.options.rrggbb"></a><a class="term" href="options.html#opt-vim.ui.colorizer.options.rrggbb"><code class="option">vim.ui.colorizer.options.rrggbb</code></a></span></dt><dd><p>#RRGGBB hex codes</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/colorizer/colorizer.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/colorizer/colorizer.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.colorizer.options.rrggbbaa"></a><a class="term" href="options.html#opt-vim.ui.colorizer.options.rrggbbaa"><code class="option">vim.ui.colorizer.options.rrggbbaa</code></a></span></dt><dd><p>#RRGGBBAA hex codes</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/colorizer/colorizer.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/colorizer/colorizer.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.illuminate.enable"></a><a class="term" href="options.html#opt-vim.ui.illuminate.enable"><code class="option">vim.ui.illuminate.enable</code></a></span></dt><dd><p>Whether to enable vim-illuminate: automatically highlight other uses of the word under the cursor.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/illuminate/illuminate.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/illuminate/illuminate.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.modes-nvim.enable"></a><a class="term" href="options.html#opt-vim.ui.modes-nvim.enable"><code class="option">vim.ui.modes-nvim.enable</code></a></span></dt><dd><p>Whether to enable modes.nvim's prismatic line decorations.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/modes/modes.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/modes/modes.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.modes-nvim.colors.copy"></a><a class="term" href="options.html#opt-vim.ui.modes-nvim.colors.copy"><code class="option">vim.ui.modes-nvim.colors.copy</code></a></span></dt><dd><p>The #RRGGBB color code for the visual mode highlights</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"#f5c359"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/modes/modes.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/modes/modes.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.modes-nvim.colors.delete"></a><a class="term" href="options.html#opt-vim.ui.modes-nvim.colors.delete"><code class="option">vim.ui.modes-nvim.colors.delete</code></a></span></dt><dd><p>The #RRGGBB color code for the visual mode highlights</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"#c75c6a"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/modes/modes.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/modes/modes.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.modes-nvim.colors.insert"></a><a class="term" href="options.html#opt-vim.ui.modes-nvim.colors.insert"><code class="option">vim.ui.modes-nvim.colors.insert</code></a></span></dt><dd><p>The #RRGGBB color code for the visual mode highlights</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"#78ccc5"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/modes/modes.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/modes/modes.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.modes-nvim.colors.visual"></a><a class="term" href="options.html#opt-vim.ui.modes-nvim.colors.visual"><code class="option">vim.ui.modes-nvim.colors.visual</code></a></span></dt><dd><p>The #RRGGBB color code for the visual mode highlights</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"#9745be"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/modes/modes.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/modes/modes.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.modes-nvim.setCursorline"></a><a class="term" href="options.html#opt-vim.ui.modes-nvim.setCursorline"><code class="option">vim.ui.modes-nvim.setCursorline</code></a></span></dt><dd><p>Set a colored cursorline on current line</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/modes/modes.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/modes/modes.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.noice.enable"></a><a class="term" href="options.html#opt-vim.ui.noice.enable"><code class="option">vim.ui.noice.enable</code></a></span></dt><dd><p>Whether to enable noice-nvim UI modification library.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/noice/noice.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/noice/noice.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.smartcolumn.enable"></a><a class="term" href="options.html#opt-vim.ui.smartcolumn.enable"><code class="option">vim.ui.smartcolumn.enable</code></a></span></dt><dd><p>Whether to enable line length indicator.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/smartcolumn/smartcolumn.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/smartcolumn/smartcolumn.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.smartcolumn.columnAt.languages"></a><a class="term" href="options.html#opt-vim.ui.smartcolumn.columnAt.languages"><code class="option">vim.ui.smartcolumn.columnAt.languages</code></a></span></dt><dd><p>The position at which smart column should be displayed for each individual buffer type</p><p><span class="emphasis"><em>Type:</em></span> attribute set of (signed integer or list of signed integer)</p><p><span class="emphasis"><em>Example:</em></span> </p><pre class="programlisting">vim.ui.smartcolumn.columnAt.languages = {
nix = 110;
ruby = 120;
java = 130;
go = [90 130];
};
</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/smartcolumn/smartcolumn.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/smartcolumn/smartcolumn.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.smartcolumn.disabledFiletypes"></a><a class="term" href="options.html#opt-vim.ui.smartcolumn.disabledFiletypes"><code class="option">vim.ui.smartcolumn.disabledFiletypes</code></a></span></dt><dd><p>The filetypes smartcolumn will be disabled for.</p><p><span class="emphasis"><em>Type:</em></span> list of string</p><p><span class="emphasis"><em>Default:</em></span> </p><pre class="programlisting">[
"help"
"text"
"markdown"
"NvimTree"
"alpha"
]</pre><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/smartcolumn/smartcolumn.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/smartcolumn/smartcolumn.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.ui.smartcolumn.showColumnAt"></a><a class="term" href="options.html#opt-vim.ui.smartcolumn.showColumnAt"><code class="option">vim.ui.smartcolumn.showColumnAt</code></a></span></dt><dd><p>The position at which the column will be displayed. Set to null to disable</p><p><span class="emphasis"><em>Type:</em></span> null or signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">120</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/ui/smartcolumn/smartcolumn.nix#blob-path" target="_top">
&lt;neovim-flake/modules/ui/smartcolumn/smartcolumn.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.updateTime"></a><a class="term" href="options.html#opt-vim.updateTime"><code class="option">vim.updateTime</code></a></span></dt><dd><p>The number of milliseconds till Cursor Hold event is fired</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">300</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.useSystemClipboard"></a><a class="term" href="options.html#opt-vim.useSystemClipboard"><code class="option">vim.useSystemClipboard</code></a></span></dt><dd><p>Make use of the clipboard for default yank and paste operations. Don't use * and +</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.ccc.enable"></a><a class="term" href="options.html#opt-vim.utility.ccc.enable"><code class="option">vim.utility.ccc.enable</code></a></span></dt><dd><p>Whether to enable ccc color picker for neovim.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/ccc/ccc.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/ccc/ccc.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.ccc.mappings.decrease10"></a><a class="term" href="options.html#opt-vim.utility.ccc.mappings.decrease10"><code class="option">vim.utility.ccc.mappings.decrease10</code></a></span></dt><dd><p>Decrease the value times delta of the slider</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;H&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/ccc/ccc.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/ccc/ccc.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.ccc.mappings.increase10"></a><a class="term" href="options.html#opt-vim.utility.ccc.mappings.increase10"><code class="option">vim.utility.ccc.mappings.increase10</code></a></span></dt><dd><p>Increase the value times delta of the slider</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;L&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/ccc/ccc.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/ccc/ccc.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.ccc.mappings.quit"></a><a class="term" href="options.html#opt-vim.utility.ccc.mappings.quit"><code class="option">vim.utility.ccc.mappings.quit</code></a></span></dt><dd><p>Cancel and close the UI without replace or insert</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;Esc&gt;"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/ccc/ccc.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/ccc/ccc.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.diffview-nvim.enable"></a><a class="term" href="options.html#opt-vim.utility.diffview-nvim.enable"><code class="option">vim.utility.diffview-nvim.enable</code></a></span></dt><dd><p>Whether to enable diffview-nvim: cycle through diffs for all modified files for any git rev.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/diffview/diffview.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/diffview/diffview.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.icon-picker.enable"></a><a class="term" href="options.html#opt-vim.utility.icon-picker.enable"><code class="option">vim.utility.icon-picker.enable</code></a></span></dt><dd><p>Whether to enable nerdfonts icon picker for nvim.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/icon-picker/icon-picker.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/icon-picker/icon-picker.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.motion.hop.enable"></a><a class="term" href="options.html#opt-vim.utility.motion.hop.enable"><code class="option">vim.utility.motion.hop.enable</code></a></span></dt><dd><p>Whether to enable Hop.nvim plugin (easy motion).</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/motion/hop/hop.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/motion/hop/hop.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.motion.hop.mappings.hop"></a><a class="term" href="options.html#opt-vim.utility.motion.hop.mappings.hop"><code class="option">vim.utility.motion.hop.mappings.hop</code></a></span></dt><dd><p>Jump to occurences [hop.nvim]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;h"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/motion/hop/hop.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/motion/hop/hop.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.motion.leap.enable"></a><a class="term" href="options.html#opt-vim.utility.motion.leap.enable"><code class="option">vim.utility.motion.leap.enable</code></a></span></dt><dd><p>Whether to enable leap.nvim plugin (easy motion).</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/motion/leap/leap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/motion/leap/leap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.motion.leap.mappings.leapBackwardTill"></a><a class="term" href="options.html#opt-vim.utility.motion.leap.mappings.leapBackwardTill"><code class="option">vim.utility.motion.leap.mappings.leapBackwardTill</code></a></span></dt><dd><p>Leap backward till</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"X"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/motion/leap/leap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/motion/leap/leap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.motion.leap.mappings.leapBackwardTo"></a><a class="term" href="options.html#opt-vim.utility.motion.leap.mappings.leapBackwardTo"><code class="option">vim.utility.motion.leap.mappings.leapBackwardTo</code></a></span></dt><dd><p>Leap backward to</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"S"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/motion/leap/leap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/motion/leap/leap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.motion.leap.mappings.leapForwardTill"></a><a class="term" href="options.html#opt-vim.utility.motion.leap.mappings.leapForwardTill"><code class="option">vim.utility.motion.leap.mappings.leapForwardTill</code></a></span></dt><dd><p>Leap forward till</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"x"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/motion/leap/leap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/motion/leap/leap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.motion.leap.mappings.leapForwardTo"></a><a class="term" href="options.html#opt-vim.utility.motion.leap.mappings.leapForwardTo"><code class="option">vim.utility.motion.leap.mappings.leapForwardTo</code></a></span></dt><dd><p>Leap forward to</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"s"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/motion/leap/leap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/motion/leap/leap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.motion.leap.mappings.leapFromWindow"></a><a class="term" href="options.html#opt-vim.utility.motion.leap.mappings.leapFromWindow"><code class="option">vim.utility.motion.leap.mappings.leapFromWindow</code></a></span></dt><dd><p>Leap from window</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"gs"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/motion/leap/leap.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/motion/leap/leap.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.surround.enable"></a><a class="term" href="options.html#opt-vim.utility.surround.enable"><code class="option">vim.utility.surround.enable</code></a></span></dt><dd><p>Whether to enable nvim-surround: add/change/delete surrounding delimiter pairs with ease.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/surround/surround.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/surround/surround.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.vim-wakatime.enable"></a><a class="term" href="options.html#opt-vim.utility.vim-wakatime.enable"><code class="option">vim.utility.vim-wakatime.enable</code></a></span></dt><dd><p>Whether to enable vim-wakatime: live code statistics.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/wakatime/vim-wakatime.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/wakatime/vim-wakatime.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.utility.vim-wakatime.cli-package"></a><a class="term" href="options.html#opt-vim.utility.vim-wakatime.cli-package"><code class="option">vim.utility.vim-wakatime.cli-package</code></a></span></dt><dd><p>The package that should be used for wakatime-cli. Set as null to use the default path in `$XDG_DATA_HOME`</p><p><span class="emphasis"><em>Type:</em></span> null or package</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">&lt;derivation wakatime-1.73.0&gt;</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/utility/wakatime/vim-wakatime.nix#blob-path" target="_top">
&lt;neovim-flake/modules/utility/wakatime/vim-wakatime.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.viAlias"></a><a class="term" href="options.html#opt-vim.viAlias"><code class="option">vim.viAlias</code></a></span></dt><dd><p>Enable vi alias</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.vimAlias"></a><a class="term" href="options.html#opt-vim.vimAlias"><code class="option">vim.vimAlias</code></a></span></dt><dd><p>Enable vim alias</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/core#blob-path" target="_top">
&lt;neovim-flake/modules/core&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.enable"></a><a class="term" href="options.html#opt-vim.visuals.enable"><code class="option">vim.visuals.enable</code></a></span></dt><dd><p>Whether to enable Visual enhancements..</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.cellularAutomaton.enable"></a><a class="term" href="options.html#opt-vim.visuals.cellularAutomaton.enable"><code class="option">vim.visuals.cellularAutomaton.enable</code></a></span></dt><dd><p>Whether to enable Enable cellular automaton [cellular-automaton].</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.cellularAutomaton.mappings.makeItRain"></a><a class="term" href="options.html#opt-vim.visuals.cellularAutomaton.mappings.makeItRain"><code class="option">vim.visuals.cellularAutomaton.mappings.makeItRain</code></a></span></dt><dd><p>Make it rain [cellular-automaton]</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"&lt;leader&gt;fml"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.cursorWordline.enable"></a><a class="term" href="options.html#opt-vim.visuals.cursorWordline.enable"><code class="option">vim.visuals.cursorWordline.enable</code></a></span></dt><dd><p>Whether to enable word and delayed line highlight [nvim-cursorline]..</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.cursorWordline.lineTimeout"></a><a class="term" href="options.html#opt-vim.visuals.cursorWordline.lineTimeout"><code class="option">vim.visuals.cursorWordline.lineTimeout</code></a></span></dt><dd><p>Time in milliseconds for cursorline to appear</p><p><span class="emphasis"><em>Type:</em></span> signed integer</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">500</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.fidget-nvim.enable"></a><a class="term" href="options.html#opt-vim.visuals.fidget-nvim.enable"><code class="option">vim.visuals.fidget-nvim.enable</code></a></span></dt><dd><p>Whether to enable Enable nvim LSP UI element [fidget-nvim].</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.fidget-nvim.align.bottom"></a><a class="term" href="options.html#opt-vim.visuals.fidget-nvim.align.bottom"><code class="option">vim.visuals.fidget-nvim.align.bottom</code></a></span></dt><dd><p>Align to bottom</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.fidget-nvim.align.right"></a><a class="term" href="options.html#opt-vim.visuals.fidget-nvim.align.right"><code class="option">vim.visuals.fidget-nvim.align.right</code></a></span></dt><dd><p>Align to right</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.indentBlankline.enable"></a><a class="term" href="options.html#opt-vim.visuals.indentBlankline.enable"><code class="option">vim.visuals.indentBlankline.enable</code></a></span></dt><dd><p>Whether to enable Enable indentation guides [indent-blankline].</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.indentBlankline.eolChar"></a><a class="term" href="options.html#opt-vim.visuals.indentBlankline.eolChar"><code class="option">vim.visuals.indentBlankline.eolChar</code></a></span></dt><dd><p>Character at end of line</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"↴"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.indentBlankline.fillChar"></a><a class="term" href="options.html#opt-vim.visuals.indentBlankline.fillChar"><code class="option">vim.visuals.indentBlankline.fillChar</code></a></span></dt><dd><p>Character to fill indents</p><p><span class="emphasis"><em>Type:</em></span> null or string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"⋅"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.indentBlankline.listChar"></a><a class="term" href="options.html#opt-vim.visuals.indentBlankline.listChar"><code class="option">vim.visuals.indentBlankline.listChar</code></a></span></dt><dd><p>Character for indentation line</p><p><span class="emphasis"><em>Type:</em></span> string</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">"│"</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.indentBlankline.showCurrContext"></a><a class="term" href="options.html#opt-vim.visuals.indentBlankline.showCurrContext"><code class="option">vim.visuals.indentBlankline.showCurrContext</code></a></span></dt><dd><p>Highlight current context from treesitter</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">config.vim.treesitter.enable</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.indentBlankline.showEndOfLine"></a><a class="term" href="options.html#opt-vim.visuals.indentBlankline.showEndOfLine"><code class="option">vim.visuals.indentBlankline.showEndOfLine</code></a></span></dt><dd><p class="simpara">Displays the end of line character set by <a class="xref" href="options.html#opt-vim.visuals.indentBlankline.eolChar"><code class="option">vim.visuals.indentBlankline.eolChar</code></a> instead of the
indent guide on line returns.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">config.vim.visuals.indentBlankline.eolChar != null</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.indentBlankline.useTreesitter"></a><a class="term" href="options.html#opt-vim.visuals.indentBlankline.useTreesitter"><code class="option">vim.visuals.indentBlankline.useTreesitter</code></a></span></dt><dd><p>Use treesitter to calculate indentation when possible.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">config.vim.treesitter.enable</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.nvimWebDevicons.enable"></a><a class="term" href="options.html#opt-vim.visuals.nvimWebDevicons.enable"><code class="option">vim.visuals.nvimWebDevicons.enable</code></a></span></dt><dd><p>Whether to enable dev icons. Required for certain plugins [nvim-web-devicons]..</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.scrollBar.enable"></a><a class="term" href="options.html#opt-vim.visuals.scrollBar.enable"><code class="option">vim.visuals.scrollBar.enable</code></a></span></dt><dd><p>Whether to enable Enable scrollbar [scrollbar.nvim].</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.visuals.smoothScroll.enable"></a><a class="term" href="options.html#opt-vim.visuals.smoothScroll.enable"><code class="option">vim.visuals.smoothScroll.enable</code></a></span></dt><dd><p>Whether to enable Enable smooth scrolling [cinnamon-nvim].</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">false</code></p><p><span class="emphasis"><em>Example:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/visuals/visuals.nix#blob-path" target="_top">
&lt;neovim-flake/modules/visuals/visuals.nix&gt;
</a></code></td></tr></table></dd><dt><span class="term"><a id="opt-vim.wordWrap"></a><a class="term" href="options.html#opt-vim.wordWrap"><code class="option">vim.wordWrap</code></a></span></dt><dd><p>Enable word wrapping.</p><p><span class="emphasis"><em>Type:</em></span> boolean</p><p><span class="emphasis"><em>Default:</em></span> <code class="literal">true</code></p><p><span class="emphasis"><em>Declared by:</em></span></p><table border="0" summary="Simple list" class="simplelist"><tr><td><code class="filename"><a class="filename" href="https://github.com/notashelf/neovim-flake/blob/main/modules/basic/module.nix#blob-path" target="_top">
&lt;neovim-flake/modules/basic/module.nix&gt;
</a></code></td></tr></table></dd></dl></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="index.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="release-notes.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">neovim-flake Manual </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Appendix B. Release Notes</td></tr></table></div></body></html>