omg-nvim/lua/plugins/treesitter.lua
Timofey.Kovalev f02bfafd25 commit
2025-01-27 11:29:03 +03:00

16 lines
312 B
Lua

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