diff options
author | Abouzar Parvan <[email protected]> | 2021-11-16 13:35:17 +0330 |
---|---|---|
committer | GitHub <[email protected]> | 2021-11-16 11:05:17 +0100 |
commit | cad6355929d71ae8a34e36f635a59479c6d81b85 (patch) | |
tree | 9c0cbd79b758065add9f9d12b47efa9af1ebb4cf | |
parent | ffcaae6c32fb10c7716dde2593e30bdf044719db (diff) |
fix: packersync issue when you have large number of plugins (#1922)
-rw-r--r-- | lua/lvim/plugin-loader.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/lvim/plugin-loader.lua b/lua/lvim/plugin-loader.lua index c4bd7373..ab7613c8 100644 --- a/lua/lvim/plugin-loader.lua +++ b/lua/lvim/plugin-loader.lua @@ -23,6 +23,7 @@ function plugin_loader.init(opts) compile_path = compile_path, log = { level = "warn" }, git = { clone_timeout = 300 }, + max_jobs = 50, display = { open_fn = function() return require("packer.util").float { border = "rounded" } |