32 lines
547 B
Lua
32 lines
547 B
Lua
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
lazy = false,
|
|
build = ":TSUpdate",
|
|
config = function()
|
|
require("nvim-treesitter").setup({
|
|
install_dir = vim.fn.stdpath("data") .. "/site",
|
|
highlight = { enable = true },
|
|
indent = { enable = true },
|
|
autotag = { enable = true },
|
|
ensure_installed = {
|
|
"lua",
|
|
"vim",
|
|
"vimdoc",
|
|
"query",
|
|
"dart",
|
|
"python",
|
|
"dockerfile",
|
|
"yaml",
|
|
"bash",
|
|
"json",
|
|
"html",
|
|
"css",
|
|
"javascript",
|
|
"sql",
|
|
"markdown",
|
|
"markdown_inline",
|
|
},
|
|
})
|
|
end,
|
|
}
|