omg-nvim/lua/plugins/treesitter.lua
Timofey.Kovalev 608fbb0d71 commit
2024-11-24 01:25:21 +03:00

16 lines
304 B
Lua

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,
}