diff --git a/options.html b/options.html index de558dce..0132dda8 100644 --- a/options.html +++ b/options.html @@ -303,7 +303,7 @@ Note that these are setup after builtin plugins.

vim.filetree.nvimTree.actions.changeDir.enable

Change the working directory when changing directories in the tree.

Type: boolean

Default: true

Declared by:

<neovim-flake/modules/filetree/nvimtree/nvimtree.nix>
vim.filetree.nvimTree.actions.changeDir.global

Use `:cd` instead of `:lcd` when changing directories. -Consider that this might cause issues with the `nvim-tree.syncRootWithCwd` option.

Type: boolean

Default: false

Declared by:

+Consider that this might cause issues with the `nvimTree.syncRootWithCwd` option.

Type: boolean

Default: false

Declared by:

<neovim-flake/modules/filetree/nvimtree/nvimtree.nix>
vim.filetree.nvimTree.actions.changeDir.restrictAboveCwd

Restrict changing to a directory above the global current working directory.

Type: boolean

Default: false

Declared by:

<neovim-flake/modules/filetree/nvimtree/nvimtree.nix> @@ -431,7 +431,7 @@ Useful when path is not in `.gitignore` or git integration is disabled.

vim.filetree.nvimTree.filters.exclude

List of directories or files to exclude from filtering: always show them.

Type: list of string

Default: [ ]

Declared by:

<neovim-flake/modules/filetree/nvimtree/nvimtree.nix>
vim.filetree.nvimTree.filters.gitClean

Do not show files with no git status. This will show ignored files when -`nvim-tree.filters.git_ignored` is set, as they are effectively dirty.

Type: boolean

Default: false

Declared by:

+`nvimTree.filters.gitIgnored` is set, as they are effectively dirty.

Type: boolean

Default: false

Declared by:

<neovim-flake/modules/filetree/nvimtree/nvimtree.nix>
vim.filetree.nvimTree.filters.gitIgnored

Ignore files based on `.gitignore`. Requires git.enable` to be `true`

Type: boolean

Default: false

Declared by:

<neovim-flake/modules/filetree/nvimtree/nvimtree.nix> @@ -511,11 +511,11 @@ Only relevant when `update_focused_file.update_root` is `true`

vim.filetree.nvimTree.renderer.groupEmpty

Compact folders that only contain a single folder into one node in the file tree.

Type: boolean

Default: false

Declared by:

<neovim-flake/modules/filetree/nvimtree/nvimtree.nix>
vim.filetree.nvimTree.renderer.highlightGit

Enable file highlight for git attributes using `NvimTreeGit` highlight groups. -Requires `nvim-tree.git.enable` +Requires `nvimTree.git.enable` This can be used with or without the icons.

Type: boolean

Default: false

Declared by:

<neovim-flake/modules/filetree/nvimtree/nvimtree.nix>
vim.filetree.nvimTree.renderer.highlightModified

Highlight modified files in the tree using `NvimTreeNormal` highlight group. -Requires `nvim-tree.view.highlightOpenedFiles`

Type: one of "none", "icon", "name", "all"

Default: "none"

Declared by:

+Requires `nvimTree.view.highlightOpenedFiles`

Type: one of "none", "icon", "name", "all"

Default: "none"

Declared by:

<neovim-flake/modules/filetree/nvimtree/nvimtree.nix>
vim.filetree.nvimTree.renderer.highlightOpenedFiles

Highlight icons and/or names for bufloaded() files using the `NvimTreeOpenedFile` highlight group.

Type: one of "none", "icon", "name", "all"

Default: "none"

Declared by:

@@ -640,7 +640,7 @@ Only relevant when `updateFocusedFile.updateRoot` is `true`
vim.filetree.nvimTree.tab.sync.close

Closes the tree across all tabpages when the tree is closed.

Type: boolean

Default: false

Declared by:

<neovim-flake/modules/filetree/nvimtree/nvimtree.nix>
vim.filetree.nvimTree.tab.sync.ignore

List of filetypes or buffer names on new tab that will prevent -`nvim-tree.tab.sync.open` and `nvim-tree.tab.sync.close`

Type: list of string

Default: [ ]

Declared by:

+`nvimTree.tab.sync.open` and `nvimTree.tab.sync.close`

Type: list of string

Default: [ ]

Declared by:

<neovim-flake/modules/filetree/nvimtree/nvimtree.nix>
vim.filetree.nvimTree.tab.sync.open

Opens the tree automatically when switching tabpage or opening a new tabpage if the tree was previously open.

Type: boolean

Default: false

Declared by:

@@ -857,6 +857,16 @@ If you are using a flutter SDK installed from a different source and encounter t <neovim-flake/modules/languages/html.nix>
vim.languages.html.treesitter.autotagHtml

Enable autoclose/autorename of html tags (nvim-ts-autotag)

Type: boolean

Default: true

Declared by:

<neovim-flake/modules/languages/html.nix> +
vim.languages.java.enable

Whether to enable Java language support.

Type: boolean

Default: false

Example: true

Declared by:

+ <neovim-flake/modules/languages/java.nix> +
vim.languages.java.lsp.enable

Whether to enable Java LSP support (java-language-server).

Type: boolean

Default: false

Example: true

Declared by:

+ <neovim-flake/modules/languages/java.nix> +
vim.languages.java.lsp.package

java language server

Type: package

Default: <derivation jdt-language-server-1.21.0>

Declared by:

+ <neovim-flake/modules/languages/java.nix> +
vim.languages.java.treesitter.enable

Whether to enable Enable Java treesitter.

Type: boolean

Default: false

Example: true

Declared by:

+ <neovim-flake/modules/languages/java.nix> +
vim.languages.java.treesitter.package

The java treesitter package to use.

Type: package

Default: pkgs.vimPlugins.nvim-treesitter.builtGrammars.java

Declared by:

+ <neovim-flake/modules/languages/java.nix>
vim.languages.markdown.enable

Whether to enable Markdown markup language support.

Type: boolean

Default: false

Example: true

Declared by:

<neovim-flake/modules/languages/markdown/markdown.nix>
vim.languages.markdown.glow.enable

Enable markdown preview in neovim with glow

Type: boolean

Default: true

Declared by:

@@ -1381,6 +1391,10 @@ Thus, it will not be wrapped in `""`.

Type:

vim.notes.orgmode.orgDefaultNotesFile

Default org file to be used for notes.

Type: string

Default: "~/Documents/org/refile.org"

Declared by:

<neovim-flake/modules/notes/orgmode/orgmode.nix> +
vim.notes.orgmode.treesitter.enable

Whether to enable Enable Orgmode treesitter.

Type: boolean

Default: false

Example: true

Declared by:

+ <neovim-flake/modules/notes/orgmode/orgmode.nix> +
vim.notes.orgmode.treesitter.orgPackage

The org treesitter package to use.

Type: package

Default: pkgs.vimPlugins.nvim-treesitter.builtGrammars.org

Declared by:

+ <neovim-flake/modules/notes/orgmode/orgmode.nix>
vim.notes.todo-comments.enable

Whether to enable todo-comments: highlight and search for todo comments like TODO, HACK, BUG in your code base.

Type: boolean

Default: false

Example: true

Declared by:

<neovim-flake/modules/notes/todo-comments/todo-comments.nix>
vim.notes.todo-comments.mappings.quickFix

Open Todo-s in a quickfix list

Type: null or string

Default: "<leader>tdq"

Declared by: