mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 22:20:06 +08:00
21 lines
325 B
Lua
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
|