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