This commit is contained in:
Timofey.Kovalev
2024-11-24 01:25:21 +03:00
parent 2515473a1e
commit 608fbb0d71
5 changed files with 27 additions and 2 deletions

View File

@ -0,0 +1,15 @@
return {
"nvim-treesitter/nvim-treesitter",
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = { "go", "lua", "luadoc", "printf", "vim", "vimdoc" },
highlight = {
enable = true,
use_languagetree = true,
},
indent = { enable = true },
})
end,
}