17 lines
475 B
Lua
17 lines
475 B
Lua
local status, treesitter = pcall(require, "nvim-treesitter.configs")
|
|
if not status then
|
|
vim.notify("没有找到 nvim-treesitter")
|
|
return
|
|
end
|
|
|
|
treesitter.setup({
|
|
-- 安装 language parser
|
|
-- :TSInstallInfo 命令查看支持的语言
|
|
ensure_installed = { "cpp", "c", "json", "html", "css", "vim", "lua", "javascript", "typescript", "tsx" },
|
|
-- 启用代码高亮模块
|
|
highlight = {
|
|
enable = true,
|
|
additional_vim_regex_highlighting = false,
|
|
},
|
|
})
|