mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 05:20:04 +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
|