Files
dotfiles/nvim/lua/plugins/autopairs.lua
T
2026-07-19 20:39:54 +08:00

14 lines
412 B
Lua

-- =============================================================================
-- autopairs.lua — 自动括号补全
-- =============================================================================
return {
{
"windwp/nvim-autopairs",
event = "InsertEnter",
opts = {
check_ts = true, -- Treesitter 感知,避免在字符串/注释里自动配对
},
},
}