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

15 lines
209 B
Lua
Raw Normal View History

2023-01-29 16:06:54 +00:00
dofile(vim.g.base46_cache .. "syntax")
local options = {
2023-01-29 18:00:13 +00:00
ensure_installed = { "lua" },
highlight = {
enable = true,
use_languagetree = true,
},
2023-01-29 18:00:13 +00:00
indent = { enable = true },
}
return options