From 06df2258c6286db4293fe5ff83564c1b4e0aa8a5 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Thu, 25 Aug 2022 02:53:07 -0700 Subject: [PATCH] nvim: parens --- .config/nvim/lua/blake/plugins.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/blake/plugins.lua b/.config/nvim/lua/blake/plugins.lua index cfaafab..1d1d486 100644 --- a/.config/nvim/lua/blake/plugins.lua +++ b/.config/nvim/lua/blake/plugins.lua @@ -9,7 +9,7 @@ end -- }} -- Reduce the maximum number of jobs in termux (a terminal for android) or if WEAK_SYSTEM is set to true -if os.getenv("TERMUX_VERSION") ~= nil or os.getenv("WEAK_SYSTEM") == "true" then +if (os.getenv("TERMUX_VERSION") ~= nil) or (os.getenv("WEAK_SYSTEM") == "true") then Packer_max_jobs = 5 else Packer_max_jobs = 100