neovim-config/lua/plugins/treesitter.lua

15 lines
242 B
Lua

local present, ts_config = pcall(require, "nvim-treesitter.configs")
if not present then
return
end
ts_config.setup {
ensure_installed = {
"lua",
},
highlight = {
enable = true,
use_languagetree = true,
},
}