2021-07-17 07:14:52 -04:00
|
|
|
local present, ts_config = pcall(require, "nvim-treesitter.configs")
|
|
|
|
if not present then
|
2021-08-16 03:49:09 -04:00
|
|
|
return
|
2021-06-25 12:06:13 -04:00
|
|
|
end
|
|
|
|
|
2021-07-15 11:43:17 -04:00
|
|
|
ts_config.setup {
|
2021-08-16 03:49:09 -04:00
|
|
|
ensure_installed = {
|
|
|
|
"bash",
|
|
|
|
"lua",
|
|
|
|
},
|
|
|
|
highlight = {
|
|
|
|
enable = true,
|
|
|
|
use_languagetree = true,
|
|
|
|
},
|
2021-07-15 11:43:17 -04:00
|
|
|
}
|