diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-02-04 23:57:35 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-02-04 23:57:35 +0200 |
| commit | 1e68c74724a9dd2ee0e8780e7bbdc6d261c5415b (patch) | |
| tree | f78979315e59387b217ee8fbb2d88c0872acee23 /.config/nvim/lua/user/pack.lua | |
| parent | 1015ef845d98bb0d55f8c0723f8610f2ca0076f3 (diff) | |
| parent | f58a55717e2d04af5ad0372cb0eb292f4fa61d3c (diff) | |
| download | dotfiles-1e68c74724a9dd2ee0e8780e7bbdc6d261c5415b.tar.gz dotfiles-1e68c74724a9dd2ee0e8780e7bbdc6d261c5415b.zip | |
Merge commit '7f070fbf822823121424b4d2f89c93bfa4e61a31'
Diffstat (limited to '.config/nvim/lua/user/pack.lua')
| -rw-r--r-- | .config/nvim/lua/user/pack.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.config/nvim/lua/user/pack.lua b/.config/nvim/lua/user/pack.lua index 43b7a36..1a37d8b 100644 --- a/.config/nvim/lua/user/pack.lua +++ b/.config/nvim/lua/user/pack.lua @@ -15,7 +15,7 @@ if fn.empty(fn.glob(install_path)) > 0 then vim.cmd([[packadd packer.nvim]]) end --- Autocommand that reloads neovim whenever you save the plugins.lua file +-- Autocommand that reloads neovim whenever you save this file vim.cmd([[ augroup packer_user_config autocmd! @@ -29,9 +29,10 @@ if not status_ok then return end --- Have packer use a popup window +-- Have packer use a popup window and set a maximum number of jobs packer.init({ auto_reload_compiled = true, + max_jobs = 90, display = { open_fn = function() return require("packer.util").float({ border = "rounded" }) |
