summaryrefslogtreecommitdiff
path: root/home.nix
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2018-09-23 21:00:21 -0700
committerBen Sima <ben@bsima.me>2018-09-23 21:00:21 -0700
commite1c829ba9bf9c266ce1ce6e1cfd80d4fdce0d5f2 (patch)
treeb73f14fd376b066e6a78b7a44ab8aad6a32b77fc /home.nix
parent54a66b0c314253cc65d4118385362f5a89799da1 (diff)
Add showpath bash alias
Diffstat (limited to 'home.nix')
-rw-r--r--home.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/home.nix b/home.nix
index a1c5874..e0dfdd0 100644
--- a/home.nix
+++ b/home.nix
@@ -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";