mirror of
https://github.com/cap153/nvim.git
synced 2025-12-26 11:14:56 +08:00
11 lines
249 B
Lua
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
|
|
}
|