From 25ea86a7e155b2a05b981194cfbf05d4032d3288 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Sun, 14 Aug 2022 22:40:52 -0700 Subject: [PATCH 1/2] git: change git alias `re` to `rest` because I can't remember `re` --- .gitconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitconfig b/.gitconfig index e9d8d5b..0948e25 100644 --- a/.gitconfig +++ b/.gitconfig @@ -28,8 +28,8 @@ ok = pull pl = pull ps = push - re = restore rem = remote + rest = restore s = status st = status sub = submodule From 9c2257dffe3eacfa855ebf8070630de18cfd8962 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Sun, 14 Aug 2022 22:41:31 -0700 Subject: [PATCH 2/2] nvim: add job limit for packer.nvim --- .config/nvim/lua/blake/plugins.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/nvim/lua/blake/plugins.lua b/.config/nvim/lua/blake/plugins.lua index 8c43882..0dc16b8 100644 --- a/.config/nvim/lua/blake/plugins.lua +++ b/.config/nvim/lua/blake/plugins.lua @@ -532,6 +532,8 @@ config = { compile_path = vim.fn.stdpath('config')..'/lua/packer_compiled.lua', -- Don't ask before removing plugins 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 { -- .\+: \+\)\@<=[^ ][^:]\+$