nvim: add job limit for packer.nvim

This commit is contained in:
PowerUser64 2022-08-14 22:41:31 -07:00
parent 25ea86a7e1
commit 9c2257dffe

View file

@ -532,6 +532,8 @@ config = {
compile_path = vim.fn.stdpath('config')..'/lua/packer_compiled.lua', compile_path = vim.fn.stdpath('config')..'/lua/packer_compiled.lua',
-- Don't ask before removing plugins -- Don't ask before removing plugins
autoremove = true, autoremove = true,
-- Limit max jobs to avoid getting killed on low-end hardware
max_jobs = 50,
}}) }})
-- how to align all plugin descriptions: select all plugins in visual line, :'<,'>Align \(.\+use { -- .\+: \+\)\@<=[^ ][^:]\+$ -- how to align all plugin descriptions: select all plugins in visual line, :'<,'>Align \(.\+use { -- .\+: \+\)\@<=[^ ][^:]\+$