From 6ed0f8f76c3d7e4bdf4f24011dc9128e2021bb61 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Fri, 4 Aug 2023 15:47:34 -0500 Subject: [PATCH] add git abbrs to fish config --- home/features/cli/fish.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/features/cli/fish.nix b/home/features/cli/fish.nix index 8d001df..cf17647 100644 --- a/home/features/cli/fish.nix +++ b/home/features/cli/fish.nix @@ -10,6 +10,10 @@ in shellAbbrs = rec { ccat = "egrep -v '^\s*(#|$)'"; + ga = "git add"; + gc = "git commit -m"; + gp = "git push"; + gs = "git status"; jqless = "jq -C | less -r"; k = mkIf hasKubectl "kubectl"; n = "nix";