neovim-config/lua/plugins/configs/treesitter.lua

16 lines
243 B
Lua
Raw Normal View History

local present, ts_config = pcall(require, "nvim-treesitter.configs")
2021-11-17 05:30:57 +00:00
if not present then
return
2021-06-25 16:06:13 +00:00
end
ts_config.setup {
ensure_installed = {
"lua",
},
highlight = {
enable = true,
use_languagetree = true,
},
}