added missing brackets

This commit is contained in:
Rentib 2022-06-21 13:24:31 +02:00 committed by siduck
parent 2138c846be
commit e57a3b5de9
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ M.autopairs = function()
local present1, autopairs = pcall(require, "nvim-autopairs")
local present2, cmp = pcall(require, "cmp")
if not present1 and present2 then
if not (present1 and present2) then
return
end