1
1
Fork 0
dotfiles/nvim/lua/plugins/treesitter.lua
2025-06-16 23:09:12 -06:00

34 lines
663 B
Lua

return {
{
"folke/which-key.nvim",
opts = {
spec = {
{ "<BS>", desc = "Decrement Selection", mode = "x" },
{ "<c-space>", desc = "Increment Selection", mode = { "x", "n" } },
},
},
},
{
"m-demare/hlargs.nvim",
event = { "VeryLazy" },
},
{
'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate',
dependencies = {
'nvim-treesitter/nvim-treesitter-context',
},
main = 'nvim-treesitter.configs',
opts = {
auto_install = true,
highlight = {
enable = true,
}
},
},
{
"windwp/nvim-ts-autotag",
event = "VeryLazy",
opts = {},
}
}