Skip to content

Instantly share code, notes, and snippets.

@gbelot2003
Created June 25, 2016 22:36
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 gbelot2003/e3c9a5883d567d77f7d85606241ebe40 to your computer and use it in GitHub Desktop.
Save gbelot2003/e3c9a5883d567d77f7d85606241ebe40 to your computer and use it in GitHub Desktop.
Fedora 23 bashrc
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
export NVM_DIR="/home/gbelot/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
export PATH="$HOME/.phpenv/bin:$PATH"
eval "$(phpenv init -)"
# custom alias commands
alias list='ls -al' # list command
alias del='rm' #delete
alias deldir='rm -r'
alias find='whereis'
alias vagrant='cd /home/gbelot/Homestead/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment