From 9fc90fc8f3ddb61e31ee986c39ed87f808574e5e Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Sat, 12 Jul 2025 16:11:21 -0400 Subject: [PATCH] git: add aliases --- user/modules/git.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/user/modules/git.nix b/user/modules/git.nix index d961002..d5f8507 100644 --- a/user/modules/git.nix +++ b/user/modules/git.nix @@ -8,7 +8,11 @@ lazygit ]; - home.shellAliases.lg = "lazygit"; + home.shellAliases = { + gs = "git status"; + ga = "git add"; + lg = "lazygit"; + }; # Use pkgs.gitAndTools.gitFull in order to get libsecret support programs.git = {