Files
crylia-theme/nvim/lua/plugins/treesitter.lua
Kievits Rene 1ceec3a7d9 a lot of stuff
2022-04-16 05:08:33 +02:00

16 lines
256 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,
},
}