neovim-config/lua/plugins/configs/treesitter.lua
2024-04-03 14:02:36 +02:00

12 lines
265 B
Lua

local options = {
ensure_installed = {"vim", "vimdoc", "c", "markdown", "gdscript", "godot_resource", "bash", "lua", "elixir", "heex", "eex" },
highlight = {
enable = true,
use_languagetree = true,
},
indent = { enable = true },
}
return options