34 lines
663 B
Lua
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 = {},
|
|
}
|
|
}
|