Skip to content

Instantly share code, notes, and snippets.

@arvindkgs
Last active September 5, 2021 12:57
Show Gist options
  • Save arvindkgs/a0cacc2b8d1485aca055025639a4b461 to your computer and use it in GitHub Desktop.
Save arvindkgs/a0cacc2b8d1485aca055025639a4b461 to your computer and use it in GitHub Desktop.
zshrc
  1. Quickly jump to bookmark'd folders: goto @project
    Setup:
    1. create directory ~/.bookmarks
    2. Add below to .zshrc
    if [ -d "$HOME/.bookmarks" ]; then
        export CDPATH=".:$HOME/.bookmarks:/"
        alias goto="cd -P"
    fi
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment