Files
nvim/lua/plugins/completion/treesitter.lua

31 lines
501 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
lazy = false,
branch = "master",
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
highlight = { enable = true },
indent = { enable = true },
ensure_installed = {
"bash",
"html",
"javascript",
"json",
"lua",
"norg",
"norg_meta",
"markdown",
"markdown_inline",
"query",
"regex",
"tsx",
"typescript",
"python",
"vim",
"yaml",
},
})
end,
}