18 lines
361 B
Lua
18 lines
361 B
Lua
dofile(vim.g.base46_cache .. "syntax")
|
|
|
|
local options = {
|
|
ensure_installed = { "lua" },
|
|
|
|
highlight = {
|
|
enable = true,
|
|
use_languagetree = true,
|
|
},
|
|
|
|
indent = { enable = true },
|
|
}
|
|
|
|
-- check for any override
|
|
options = require("core.utils").load_override(options, "nvim-treesitter/nvim-treesitter")
|
|
|
|
require("nvim-treesitter.configs").setup(options)
|