zsh: install and set up tere to quickly move around the file system
1 file changed, 5 insertions(+), 0 deletions(-)
changed files
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" +}