16 lines
312 B
Lua
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,
|
|
}
|