plugins and config

This commit is contained in:
2025-05-06 23:37:50 +02:00
parent 850670d44c
commit cd3a5784fb
7 changed files with 166 additions and 13 deletions

View File

@ -1,6 +1,23 @@
return {
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = "all",
},
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function ()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = "all",
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
incremental_selection = {
enable = true,
keymaps = {
init_selection = "<Enter>",
node_incremental = "<Enter>",
scope_incremental = false,
node_decremental = "<Backspace>"
},
}
})
end
}