summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-11-26 19:58:26 -0500
committerseth <[email protected]>2023-11-26 19:58:26 -0500
commitf5395d89effc6c7b443923c09a7ce41f9d2a3399 (patch)
tree8be2508e9cecdb5e34271c46fe9a37da7c3a04fc
parent3080f3f2a95a6afbe29fe1194649f589d95b528f (diff)
chore: don't use deprecated context_commentstring treesitter module
-rw-r--r--lua/getchoo/plugins/lsp.lua7
1 files changed, 2 insertions, 5 deletions
diff --git a/lua/getchoo/plugins/lsp.lua b/lua/getchoo/plugins/lsp.lua
index 7ca1083..1732679 100644
--- a/lua/getchoo/plugins/lsp.lua
+++ b/lua/getchoo/plugins/lsp.lua
@@ -19,11 +19,8 @@ require("nvim-treesitter.configs").setup({
auto_install = false,
highlight = { enable = true },
indent = { enable = true },
- context_commentstring = {
- enable = true,
- enable_autocmd = false,
- },
})
----- trouble
+vim.g.skip_ts_context_commentstring_module = true
+
require("trouble").setup()