Created
June 22, 2018 17:53
-
-
Save giraffesyo/6ba07b0da10dbe4cc7642dc4d4f11aa0 to your computer and use it in GitHub Desktop.
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
# Use nano | |
export EDITOR=nano | |
# Bash autocompletion | |
[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion | |
# macOS Colors | |
export CLICOLOR=1 | |
# Useful aliases | |
alias ls='ls -hF' | |
alias ll='ls -lhF' | |
alias l='ls -lAhF' | |
alias la='ls -ahF' | |
alias c='clear' | |
alias e='exit' | |
export N_PREFIX="$HOME/n"; [[ :$PATH: == *":$N_PREFIX/bin:"* ]] || PATH+=":$N_PREFIX/bin" # Added by n-install (see http://git.io/n-install-repo). | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment