1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 20:20:05 +08:00
SpaceVim/lua/spacevim/treesitter.lua
2024-03-11 22:07:14 +08:00

21 lines
325 B
Lua

local M = {}
function M.setup()
require('nvim-treesitter.configs').setup({
ensure_installed = {},
sync_install = false,
auto_install = false,
ignore_install = {},
highlight = {
enable = false,
disable = {"lua"},
additional_vim_regex_highlighting = false,
},
})
end
return M