diff options
author | Soispha <soispha@vhack.eu> | 2023-12-29 08:47:09 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-12-29 08:47:09 +0100 |
commit | 5fbc81b86597cbc32de51f3f13217eff28a815fa (patch) | |
tree | 0699a08e96be0405c531857ddee58dac388ce889 /hm/soispha/conf/git/default.nix | |
parent | feat(hm/conf/xdg): Add a custom url_handler to support select the project (diff) | |
download | nixos-config-5fbc81b86597cbc32de51f3f13217eff28a815fa.tar.gz nixos-config-5fbc81b86597cbc32de51f3f13217eff28a815fa.zip |
fix(hm/conf/git): Revert changing the st alias to the short status
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/git/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hm/soispha/conf/git/default.nix b/hm/soispha/conf/git/default.nix index efacf36d..46f272eb 100644 --- a/hm/soispha/conf/git/default.nix +++ b/hm/soispha/conf/git/default.nix @@ -14,8 +14,8 @@ in { cm = "commit --verbose"; cmr = "commit --file .git/COMMIT_EDITMSG --edit --verbose"; - st = "status --short --branch"; - stf = "status"; + st = "status"; + sts = "status --short --branch"; ds = "diff --staged"; di = "diff"; |