From d41ef05cc00bf3502fb55512c265a02116127ca8 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Fri, 12 May 2023 20:33:51 +0200 Subject: [PATCH] feat(mini.comment)!: removed ts-context-commentstring since mini.comment provides this functionality out of the box If you use this plugin, you can add it again with the following code: { "nvim-treesitter/nvim-treesitter", opts = { context_commentstring = { enable = true, enable_autocmd = false, }, }, dependencies = { "JoosepAlviste/nvim-ts-context-commentstring", }, } --- lua/lazyvim/plugins/treesitter.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/lua/lazyvim/plugins/treesitter.lua b/lua/lazyvim/plugins/treesitter.lua index d17934df..66c9a3eb 100644 --- a/lua/lazyvim/plugins/treesitter.lua +++ b/lua/lazyvim/plugins/treesitter.lua @@ -34,7 +34,6 @@ return { opts = { highlight = { enable = true }, indent = { enable = true }, - context_commentstring = { enable = true, enable_autocmd = false }, ensure_installed = { "bash", "c",