From 2650110613f6cefa5fcb9cd9b88804fdab639317 Mon Sep 17 00:00:00 2001 From: lightly-toasted Date: Sun, 10 Aug 2025 20:23:44 +0900 Subject: [PATCH] feat(zsh): add alias gs for git status --- home/toast/programs/zsh.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home/toast/programs/zsh.nix b/home/toast/programs/zsh.nix index dbddcbb..16aee21 100644 --- a/home/toast/programs/zsh.nix +++ b/home/toast/programs/zsh.nix @@ -8,6 +8,7 @@ shellAliases = { update = "sudo nixos-rebuild switch --flake /home/toast/nix-config"; + gs = "git status"; }; }; }