all repos — nixfiles @ 4b6fcdaaedd86789e8212ca2af378f8ab1d27317

System and user configuration, managed by nix and home-manager

Add shell aliases for common development and administration tasks
Alan Pearce alan@alanpearce.eu
Sun, 06 Oct 2019 00:19:35 +0200
commit

4b6fcdaaedd86789e8212ca2af378f8ab1d27317

parent

2649bcb16beb51345f0ca8fe790fb47ad0513882

M user/modules/darwin.nixuser/modules/darwin.nix
@@ -39,6 +39,11 @@ aspellDicts.en       darwin-zsh-completions
   ];
 
+  programs.zsh.shellAliases = {
+    da = "darwin-rebuild";
+    das = "darwin-rebuild switch";
+  };
+
   # Use GPG from  GPGTools
   programs.git.signing.gpgPath = "/usr/local/bin/gpg";
 }
M user/modules/git.nixuser/modules/git.nix
@@ -53,7 +53,9 @@ lfs = {       enable = true;
     };
     aliases = {
-      up = "merge FETCH_HEAD";
+      authors = "shortlog -s -n";
+      mup = "merge FETCH_HEAD";
+      rup = "rebase FETCH_HEAD";
       st = "status -sb";
       ci = "commit";
       br = "branch";
M user/modules/nixos.nixuser/modules/nixos.nix
@@ -11,4 +11,11 @@ config = config.nixpkgs.config;       };
     })
   ];
+
+  programs.zsh.shellAliases = {
+    nor = "nixos-rebuild";
+    nors = "nixos-rebuild switch";
+    norb = "nixos-rebuild boot";
+    norr = "nixos-rebuild switch --rollback";
+  };
 }
M user/modules/zsh.nixuser/modules/zsh.nix
@@ -77,9 +77,53 @@ standard = "pnpx standard";       tsc = "pnpx tsc";
       tslint = "pnpx tslint";
       tsnode = "pnpx ts-node";
+
+      history = "fc -l $(( $LINES - 2 ))";
+      hist-freq-lines = "fc -l -2000 | cut -d' ' -f4- | sort | uniq -c | sort -g | tail -n100 | less";
+      hist-freq-commands = "fc -l -2000 | cut -d' ' -f4 | sort | uniq -c | sort -g | tail -n10 | less";
       wprop = "xprop | egrep '^WM_(CLASS|NAME|WINDOW_ROLE|TYPE)'";
 
-      watch = "watch "; # enable watch with aliases
+      # Enable the following commands to support aliases.
+      sudo = "sudo ";
+      watch = "watch ";
+
+      g = "rg";
+
+      ga = "git add";
+      gi = "git";
+      gs = "git st";
+      gd = "git diff";
+      gf = "git fetch";
+      gk = "git push";
+      gj = "git pull";
+      gl = "git lg";
+      gr = "git remote";
+      gz = "git stash";
+      gzl = "git stash list";
+      gzp = "git stash pop";
+      gdt = "git difftool";
+      grl = "git reflog";
+      gri = "git rebase --interactive";
+      gsh = "git show";
+      gsm = "git submodule";
+      gci = "git commit";
+      gco = "git checkout";
+      gbr = "git br";
+      gbrc = "git checkout -b";
+      gbrd = "git branch --delete";
+      gbrm = "git branch --move";
+      gmup = "git mup";
+      grup = "git rup";
+
+      hos = "home-manager switch";
+      hon = "home-manager news";
+
+      n = "nix-env";
+      ni = "nix-env -iA";
+      nq = "nix-env -q";
+      ne = "nix-env -e";
+      nup = "nix-env -u";
+      ngc = "nix-collect-garbage --delete-older-than 14d";
     };
 
     # move to envExtra after 19.09
@@ -126,6 +170,11 @@ fi 
       typeset -T GHQ_ROOT ghq_root
       export GHQ_ROOT="$HOME/projects:$HOME/go/src:$HOME/quicklisp/local-projects"
+
+      function hist-freq-subcommands () {
+        fc -l -m "$1*" -2000 | cut -d' ' -f4- | sort | uniq -c | sort -g | tail -n100 | less
+      }
+
     '' + builtins.readFile ../zsh/.config/zsh/.zshrc;
   };
 }