NvChad/lua/plugins/treesitter.lua
Galen Rowell 86903ab982
chore: stylua formatting update (#261)
* addded stylua config file

* chore: formatted with stylua
2021-08-16 13:19:09 +05:30

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,
},
}