Skip to content

Instantly share code, notes, and snippets.

@gnuget
Created September 2, 2011 22:59
Show Gist options
  • Save gnuget/1190159 to your computer and use it in GitHub Desktop.
Save gnuget/1190159 to your computer and use it in GitHub Desktop.
My Bash Profile
#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