Created
September 2, 2011 22:59
-
-
Save gnuget/1190159 to your computer and use it in GitHub Desktop.
My Bash Profile
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
#prompt decente | |
export PS1="[\u@\h \w]$ " | |
#UTF-8! | |
export LANG=en_US.UTF-8 | |
export LC_ALL=en_US.UTF-8 | |
#paginas man | |
export MANPATH=/opt/local/share/man:$MANPATH | |
#Colores en la terminal | |
export CLICOLOR=1 | |
#Algunos alias utiles | |
alias ls='ls -G' | |
alias ll='ls -hl' | |
alias php='/usr/local/Cellar/php52/5.2.11/bin/php' | |
alias vim='mvim' | |
#Editor | |
export EDITOR="vim" | |
export SVN_EDITOR="vim" | |
#Aliases | |
#MNPP | |
alias mysql='/Applications/MNPP/Library/mysql/bin/mysql --default-character-set=utf8' | |
alias mysqldump='/Applications/MNPP/Library/mysql/bin/mysqldump' | |
alias mnpp='/Applications/MNPP/init/mnpp' | |
alias lamp='sudo /Applications/MNPP/init/mnpp --php52 --start' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment