bash: rename aliases
authorJulien Moutinho <julm+julm-nix@sourcephile.fr>
Fri, 12 Nov 2021 10:30:19 +0000 (11:30 +0100)
committerJulien Moutinho <julm+julm-nix@sourcephile.fr>
Fri, 12 Nov 2021 10:30:19 +0000 (11:30 +0100)
homes/programs/bash.nix

index f105e4fad71227874f07e7d7af0cea2c315ea53e..7d670e540692adc166dce235ad6a346de1418df3 100644 (file)
@@ -3,6 +3,8 @@
 programs.bash = {
   shellAliases = {
     cl = "clear";
+    eic = "edit-in-commit";
+    eigg = "edit-in-git-grep";
     g = "git";
     grep = "grep --color";
     j="sudo journalctl -u";
@@ -23,6 +25,7 @@ programs.bash = {
     u="systemctl --user";
     ut="systemctl --user status";
     watch = "watch --color";
+    zfs-umount = "zfs-unmount";
   };
   initExtra = ''
     shopt -s globstar
@@ -80,8 +83,8 @@ programs.bash = {
       done |
       sort -nk1,1
     }
-    vim-git () { $EDITOR $(git diff-tree --no-commit-id --name-only -r "$@"); }
-    vim-git-grep () { $EDITOR $(git grep --name-only --recursive "$@"); }
+    edit-in-commit () { $EDITOR $(git diff-tree --no-commit-id --name-only -r "$@"); }
+    edit-in-git-grep () { $EDITOR $(git grep --name-only --recursive "$@"); }
     zfs-mount () { for d in $(zfs list -rH -o name "$@"); do sudo zfs mount -l "$d"; done; }
     zfs-unmount () { sudo zfs unmount -u "$@"; }
   '';