16 lines
396 B
Lua
16 lines
396 B
Lua
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
branch = 'master',
|
|
lazy = false,
|
|
build = ":TSUpdate",
|
|
config= function()
|
|
--TREESITTER
|
|
local config = require("nvim-treesitter.configs")
|
|
config.setup({
|
|
ensure_installed ={"lua", "c", "python", "cpp", "typescript", "javascript", "html", "json5"},
|
|
highlight ={enable=true},
|
|
indent ={ disable=true },
|
|
})
|
|
end
|
|
}
|