From 0adc9d896542627c7a3e0db09f286e714714e95a Mon Sep 17 00:00:00 2001 From: voidarc Date: Thu, 30 Apr 2026 09:38:50 +0100 Subject: [PATCH] finally added custom commands to pull with submodules --- .config/lazygit/config.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.config/lazygit/config.yml b/.config/lazygit/config.yml index d3f35f3b..a1581b67 100644 --- a/.config/lazygit/config.yml +++ b/.config/lazygit/config.yml @@ -1,2 +1,14 @@ gui: nerdFontsVersion: "3" + +customCommands: + - key: 'p' + context: 'global' + command: 'git pull --recurse-submodules' + loadingText: 'Pulling with submodules' + output: 'log' + - key: '' + context: 'global' + command: 'git pull' + loadingText: 'Pulling remote repo' + output: 'log'