chore: Added vimtex dependency

This commit is contained in:
2022-10-14 20:43:24 +01:00
parent 5c33446019
commit dada855b98
31 changed files with 3052 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
local present, treesitter = pcall(require, "nvim-treesitter.configs")
if not present then
return
end
require("base46").load_highlight "treesitter"
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")
treesitter.setup(options)