neovim-confs/lua/plugins/treesitter.lua

16 lines
266 B
Lua

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