programs.bash = {
shellAliases = {
cl = "clear";
+ eic = "edit-in-commit";
+ eigg = "edit-in-git-grep";
g = "git";
grep = "grep --color";
j="sudo journalctl -u";
u="systemctl --user";
ut="systemctl --user status";
watch = "watch --color";
+ zfs-umount = "zfs-unmount";
};
initExtra = ''
shopt -s globstar
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 "$@"; }
'';