From c6b5676eeb57f6647d4601654a04c6fdacecb97d Mon Sep 17 00:00:00 2001 From: David Morgan Date: Fri, 20 Jan 2023 12:07:29 +0000 Subject: [PATCH] Add some more aliases --- nix-conf/home/includes/zsh.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix-conf/home/includes/zsh.nix b/nix-conf/home/includes/zsh.nix index cc79fb9..d62bbb4 100644 --- a/nix-conf/home/includes/zsh.nix +++ b/nix-conf/home/includes/zsh.nix @@ -59,6 +59,7 @@ in _nix-up = "doas nix-channel --update && doas nixos-rebuild switch && nix-channel --update && home-manager switch && system-changes-report && hm-changes-report && df -h && date"; home-up = "git -C ~/dotfiles pull && nix-channel --update && home-manager switch && hm-changes-report"; _home-up = "nix-channel --update && home-manager switch && hm-changes-report"; + nix-hammer = "nix shell -f https://github.com/jtojnar/nixpkgs-hammering/archive/master.tar.gz -c nixpkgs-hammer"; fb = "fzf --preview 'bat --color=always --style=numbers --line-range=:500 {}'"; @@ -68,6 +69,8 @@ in erg = "ea run grouped rg --"; fd = "ea run linear fd --"; + git-reset-branch = "git fetch && git reset --hard origin/\$(git branch --show-current)"; + # Git log aliases from the omz git plugin gl = "git pull"; glg = "git log --stat";