fixed nvim-treesitter for changes.

This commit is contained in:
Gabe Venberg 2026-01-04 15:30:38 +01:00
parent fa9fd6626b
commit 89b6a830f8
2 changed files with 5 additions and 14 deletions

View file

@ -16,24 +16,15 @@ return {
after = function(plugin)
-- [[ Configure Treesitter ]]
-- See `:help nvim-treesitter`
require('nvim-treesitter.configs').setup {
require('nvim-treesitter').setup {
highlight = { enable = true, },
indent = { enable = false, },
incremental_selection = {
enable = true,
keymaps = {
init_selection = '<c-space>',
node_incremental = '<c-space>',
scope_incremental = '<c-s>',
node_decremental = '<M-space>',
},
},
}
end,
},
{
"comment.nvim",
for_cat = 'telescope',
for_cat = 'treesitter',
after = function(plugin)
require('Comment').setup()
end,