12 lines
307 B
Lua
12 lines
307 B
Lua
-- ============================================================================
|
|
-- 自动括号补全 (nvim-autopairs)
|
|
-- ============================================================================
|
|
|
|
return {
|
|
{
|
|
"windwp/nvim-autopairs",
|
|
event = "InsertEnter",
|
|
opts = {},
|
|
},
|
|
}
|