dotfiles/home/user/.config/nvim/after/plugin/nvim-treesitter.lua
2023-03-05 02:35:08 +03:00

15 lines
290 B
Lua

local status, nvim_treesitter = pcall(require, "nvim-treesitter")
if (not status) then return end
nvim_treesitter.setup {
ensure_installed = {"python", "lua", "vim", "html", "rust"},
sync_install = true,
auto_install = true,
highlight = {
enable = true,
}
}