Compare commits

..

No commits in common. "5a3ac8993a29ce676ba63365850656cc4789f98c" and "68346ebedea3f33ca93cf9b77ca69562660faf2d" have entirely different histories.

4 changed files with 5 additions and 20 deletions

View file

@ -293,8 +293,6 @@
- Add lint (luacheck) and formatting (stylua) support for Lua. - Add lint (luacheck) and formatting (stylua) support for Lua.
- Add lint (markdownlint-cli2) support for Markdown. - Add lint (markdownlint-cli2) support for Markdown.
- Add catppuccin integration for Bufferline, Lspsaga. - Add catppuccin integration for Bufferline, Lspsaga.
- Add neo-tree integration for Bufferline.
- Add more applicable filetypes to illuminate denylist.
[tebuevd](https://github.com/tebuevd): [tebuevd](https://github.com/tebuevd):

View file

@ -279,12 +279,6 @@ in {
highlight = "Directory"; highlight = "Directory";
separator = true; separator = true;
} }
{
filetype = "neo-tree";
text = "File Explorer";
highlight = "Directory";
separator = true;
}
]; ];
description = "The windows to offset bufferline above, see `:help bufferline-offset`"; description = "The windows to offset bufferline above, see `:help bufferline-offset`";
}; };

View file

@ -24,19 +24,12 @@ in {
grammars = mkOption { grammars = mkOption {
type = listOf package; type = listOf package;
default = []; default = [];
example = literalExpression ''
pkgs.vimPlugins.nvim-treesitter.builtGrammars; [
regex
kdl
];
'';
description = '' description = ''
List of treesitter grammars to install. For grammars to be installed properly, List of treesitter grammars to install.
you must use grammars from `pkgs.vimPlugins.nvim-treesitter.builtGrammars`.
For languages already supported by nvf, you may use For languages already supported by nvf, you may
{option}`vim.language.<lang>.treesitter` options, which will automatically add use the {option}`vim.language.<lang>.treesitter` options, which
the required grammars to this. will automatically add the required grammars to this.
''; '';
}; };

View file

@ -11,7 +11,7 @@ in {
setupOpts = mkPluginSetupOption "vim-illuminate" { setupOpts = mkPluginSetupOption "vim-illuminate" {
filetypes_denylist = mkOption { filetypes_denylist = mkOption {
type = listOf str; type = listOf str;
default = ["dirvish" "fugitive" "help" "neo-tree" "notify" "NvimTree" "TelescopePrompt"]; default = ["dirvish" "fugitive" "NvimTree" "TelescopePrompt"];
description = "Filetypes to not illuminate, this overrides `filetypes_allowlist`"; description = "Filetypes to not illuminate, this overrides `filetypes_allowlist`";
}; };
}; };