cap153_nvim/lua/lazy/plugins/pairs.lua
2025-05-10 20:48:10 +08:00

11 lines
249 B
Lua

return {
'windwp/nvim-autopairs',
config = function()
require('nvim-autopairs').setup({
-- 在写markdown时禁用括号补全
disable_filetype = {"markdown"},
-- can use treesitter to check for a pair.
check_ts = true,
})
end
}