diff options
author | Ben Sima <ben@bsima.me> | 2018-09-23 21:00:21 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2018-09-23 21:00:21 -0700 |
commit | e1c829ba9bf9c266ce1ce6e1cfd80d4fdce0d5f2 (patch) | |
tree | b73f14fd376b066e6a78b7a44ab8aad6a32b77fc | |
parent | 54a66b0c314253cc65d4118385362f5a89799da1 (diff) |
Add showpath bash alias
-rw-r--r-- | home.nix | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -191,7 +191,7 @@ in ]; extraConfig = builtins.readFile ./vimrc; }; - + git = { enable = true; userName = "Ben Sima"; @@ -252,6 +252,7 @@ in s = "fasd -si"; # show / search / select sd = "fasd -sid"; # interactive directory selection sf = "fasd -sif"; # interactive file selection + showpath = "echo $PATH | sed 's/:/\n/g'"; tdate = "date +%Y.%m.%d..%H.%M"; ttime = "date +%H.%M"; typeless = "history | tail -n 20000 | sed 's/.* //' | sort | uniq -c | sort -g | tail -n 100"; |