added missing brackets
This commit is contained in:
parent
2138c846be
commit
e57a3b5de9
@ -6,7 +6,7 @@ M.autopairs = function()
|
|||||||
local present1, autopairs = pcall(require, "nvim-autopairs")
|
local present1, autopairs = pcall(require, "nvim-autopairs")
|
||||||
local present2, cmp = pcall(require, "cmp")
|
local present2, cmp = pcall(require, "cmp")
|
||||||
|
|
||||||
if not present1 and present2 then
|
if not (present1 and present2) then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user