6 lines
146 B
Lua
6 lines
146 B
Lua
local status, plugin = pcall(require,'nvim-autopairs')
|
|
if not status then
|
|
print('Error with plugin: ', plugin)
|
|
return
|
|
end
|
|
plugin.setup({}) |