diff --git a/docs/release-notes/rl-0.8.md b/docs/release-notes/rl-0.8.md index 3642df7b..e8239681 100644 --- a/docs/release-notes/rl-0.8.md +++ b/docs/release-notes/rl-0.8.md @@ -293,8 +293,6 @@ - Add lint (luacheck) and formatting (stylua) support for Lua. - Add lint (markdownlint-cli2) support for Markdown. - Add catppuccin integration for Bufferline, Lspsaga. -- Add neo-tree integration for Bufferline. -- Add more applicable filetypes to illuminate denylist. [tebuevd](https://github.com/tebuevd): diff --git a/modules/plugins/tabline/nvim-bufferline/nvim-bufferline.nix b/modules/plugins/tabline/nvim-bufferline/nvim-bufferline.nix index 997c9ba3..5a4f1ff0 100644 --- a/modules/plugins/tabline/nvim-bufferline/nvim-bufferline.nix +++ b/modules/plugins/tabline/nvim-bufferline/nvim-bufferline.nix @@ -279,12 +279,6 @@ in { highlight = "Directory"; separator = true; } - { - filetype = "neo-tree"; - text = "File Explorer"; - highlight = "Directory"; - separator = true; - } ]; description = "The windows to offset bufferline above, see `:help bufferline-offset`"; }; diff --git a/modules/plugins/treesitter/treesitter.nix b/modules/plugins/treesitter/treesitter.nix index d88cc1a9..322d2eb0 100644 --- a/modules/plugins/treesitter/treesitter.nix +++ b/modules/plugins/treesitter/treesitter.nix @@ -24,19 +24,12 @@ in { grammars = mkOption { type = listOf package; default = []; - example = literalExpression '' - pkgs.vimPlugins.nvim-treesitter.builtGrammars; [ - regex - kdl - ]; - ''; description = '' - List of treesitter grammars to install. For grammars to be installed properly, - you must use grammars from `pkgs.vimPlugins.nvim-treesitter.builtGrammars`. + List of treesitter grammars to install. - For languages already supported by nvf, you may use - {option}`vim.language..treesitter` options, which will automatically add - the required grammars to this. + For languages already supported by nvf, you may + use the {option}`vim.language..treesitter` options, which + will automatically add the required grammars to this. ''; }; diff --git a/modules/plugins/ui/illuminate/illuminate.nix b/modules/plugins/ui/illuminate/illuminate.nix index 4096e73c..b910101f 100644 --- a/modules/plugins/ui/illuminate/illuminate.nix +++ b/modules/plugins/ui/illuminate/illuminate.nix @@ -11,7 +11,7 @@ in { setupOpts = mkPluginSetupOption "vim-illuminate" { filetypes_denylist = mkOption { 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`"; }; };