15 lines
240 B
Lua
15 lines
240 B
Lua
-- autopairs
|
|
--
|
|
-- A super powerful autopair plugin for Neovim that supports multiple characters.
|
|
--
|
|
-- https://github.com/windwp/nvim-autopairs
|
|
--
|
|
|
|
return {
|
|
{
|
|
'windwp/nvim-autopairs',
|
|
event = 'InsertEnter',
|
|
opts = {},
|
|
},
|
|
}
|