dotfiles/sub/nvim/after/plugin/nvim-treesitter.lua
2023-01-15 19:07:48 +03:00

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,
}