From e57a3b5de952e58e2dd13f02a4a6ae26449d1040 Mon Sep 17 00:00:00 2001 From: Rentib Date: Tue, 21 Jun 2022 13:24:31 +0200 Subject: [PATCH] added missing brackets --- lua/plugins/configs/others.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/plugins/configs/others.lua b/lua/plugins/configs/others.lua index 730e8e2..0ca3bf3 100644 --- a/lua/plugins/configs/others.lua +++ b/lua/plugins/configs/others.lua @@ -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