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

17 lines
256 B
Lua
Raw Normal View History

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