mirror of
https://github.com/NvChad/NvChad.git
synced 2024-11-06 15:20:25 +00:00
22 lines
312 B
Lua
22 lines
312 B
Lua
local ts_config
|
|
if
|
|
not pcall(
|
|
function()
|
|
ts_config = require "nvim-treesitter.configs"
|
|
end
|
|
)
|
|
then
|
|
return
|
|
end
|
|
|
|
ts_config.setup {
|
|
ensure_installed = {
|
|
"bash",
|
|
"lua"
|
|
},
|
|
highlight = {
|
|
enable = true,
|
|
use_languagetree = true
|
|
}
|
|
}
|