configfiles/nvim/.config/nvim/lua/plugin/treesitter.lua
2023-02-05 18:07:51 +01:00

32 lines
774 B
Lua

return {
{
"nvim-treesitter/nvim-treesitter",
version = false,
build = ":TSUpdate",
-- event = "BufReadPre",
opts = {
ensure_installed = {
"c",
"lua",
"rust",
"latex",
"bibtex",
"python",
"vim",
"yaml",
"json",
},
sync_install = false,
auto_install = true,
highlight = {
enable = true,
disable = {
"markdown",
},
},
},
config = function(_, opts)
require("nvim-treesitter.configs").setup(opts)
end,
}
}