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

13 lines
265 B
Lua
Raw Normal View History

2023-12-24 11:01:08 +00:00
local options = {
2024-04-03 11:58:41 +00:00
ensure_installed = {"vim", "vimdoc", "c", "markdown", "gdscript", "godot_resource", "bash", "lua", "elixir", "heex", "eex" },
2023-12-24 11:01:08 +00:00
highlight = {
enable = true,
use_languagetree = true,
},
indent = { enable = true },
}
return options