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

18 lines
361 B
Lua
Raw Normal View History

2023-01-29 17:06:54 +01:00
dofile(vim.g.base46_cache .. "syntax")
local options = {
2023-01-29 19:00:13 +01:00
ensure_installed = { "lua" },
highlight = {
enable = true,
use_languagetree = true,
},
2023-01-29 19:00:13 +01:00
indent = { enable = true },
}
-- check for any override
options = require("core.utils").load_override(options, "nvim-treesitter/nvim-treesitter")
2023-01-25 15:41:55 +01:00
require("nvim-treesitter.configs").setup(options)