Created
June 25, 2016 22:36
-
-
Save gbelot2003/e3c9a5883d567d77f7d85606241ebe40 to your computer and use it in GitHub Desktop.
Fedora 23 bashrc
This file contains 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
# .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