dotfiles/sub/nvim/after/plugin/nvim-treesitter.lua

9 lines
152 B
Lua

local status, nvim_treesitter = pcall(require, "nvim-treesitter")
if (not status) then return end
nvim_treesitter.setup {
auto_install = true,
}