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
3 files changed, 7 insertions(+), 0 deletions(-)
M user/settings/base.nix → user/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.nix → user/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/zshrc → user/zsh/zshrc
@@ -164,3 +164,8 @@ ecpenv () { esetenv "$1" "${(P)1}" } compdef '_parameters' ecpenv + +tere() { + local result=$(command tere "$@") + [ -n "$result" ] && cd -- "$result" +}