DOTFILES/dot_config/nvim/lua/plugins/configs/treesitter.lua

13 lines
169 B
Lua
Raw Normal View History

2024-01-25 19:32:08 -05:00
local options = {
ensure_installed = { "lua" },
highlight = {
enable = true,
use_languagetree = true,
},
indent = { enable = true },
}
return options