all repos — nixfiles @ 986efd80c92a671eea0a950997ef1ca42050b551

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

zsh: install and set up tere to quickly move around the file system
Alan Pearce alan@alanpearce.eu
Sat, 10 Jun 2023 18:21:35 +0200
commit

986efd80c92a671eea0a950997ef1ca42050b551

parent

5ecc7f4e889be6bc899d2f7faa72d44c422f4c6c

3 files changed, 7 insertions(+), 0 deletions(-)

jump to
M user/settings/base.nixuser/settings/base.nix
@@ -51,6 +51,7 @@ tree       remake
       abduco
       dvtm
+      tere
       (aspellWithDicts (d: [ d.en d.en-computers d.en-science d.de ]))
     ]
     ++ (
M user/settings/zsh.nixuser/settings/zsh.nix
@@ -106,6 +106,7 @@ lal = "ll -A";       lla = "lal";
       llr = "ll -t";
 
+      c = "tere";
       "c," = "cd $(ghq list -p nixfiles)";
       cg = "cd $(git root)";
       cdg = "cd $(git root)";
M user/zsh/zshrcuser/zsh/zshrc
@@ -164,3 +164,8 @@ ecpenv () {   esetenv "$1" "${(P)1}"
 }
 compdef '_parameters' ecpenv
+
+tere() {
+  local result=$(command tere "$@")
+  [ -n "$result" ] && cd -- "$result"
+}