Created
April 26, 2013 15:01
-
-
Save syl20bnr/5467941 to your computer and use it in GitHub Desktop.
Auto launch a ranger on top of every zsh session.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Always launch a ranger session | |
if [[ $RANGER == "" ]]; then | |
export RANGER=1 | |
ranger | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Accessing the shell back from ranger is performed with the
S
key. To go back in ranger pressCTRL+d
.