Skip to content

Instantly share code, notes, and snippets.

@giraffesyo
Created June 22, 2018 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giraffesyo/6ba07b0da10dbe4cc7642dc4d4f11aa0 to your computer and use it in GitHub Desktop.
Save giraffesyo/6ba07b0da10dbe4cc7642dc4d4f11aa0 to your computer and use it in GitHub Desktop.
# 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