12 lines
212 B
Lua
12 lines
212 B
Lua
function conf()
|
|
--- Ensure plugin is avaiable
|
|
local nvimautopairs = require("nvim-autopairs")
|
|
nvimautopairs.setup()
|
|
end
|
|
|
|
return {
|
|
'windwp/nvim-autopairs',
|
|
event = "InsertEnter",
|
|
config = conf
|
|
}
|