Last active
March 29, 2017 12:51
-
-
Save vicgonvt/8ef60257f082dc977c3625958fc10d19 to your computer and use it in GitHub Desktop.
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
# Aliases loading | |
alias aliases='vim ~/.bash_profile' | |
alias aliases_reload='source ~/.bash_profile' | |
# System Changes | |
alias ls='ls -la' | |
# Composer | |
export PATH="$PATH:$HOME/.composer/vendor/bin" | |
export PS1="\W >> \[$(tput sgr0)\]" | |
export CLICOLOR=1 | |
export LSCOLORS=GxFxCxDxBxegedabagaced | |
# Sublime | |
alias subl='/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl .' | |
# Git | |
alias gs='git status' | |
alias gc='git commit -m' | |
alias gp='git pull' | |
alias gpush='git push' | |
alias gaa='git add .' | |
# SSHs | |
alias lumserver='ssh [email protected]' | |
alias cdmserver='ssh [email protected]' | |
alias dccserver='ssh [email protected]' | |
alias mcnewserver='ssh [email protected]' | |
# PHP | |
alias phpd='php -dxdebug.remote_autostart' | |
alias phpu='php -dxdebug.remote_autostart /usr/local/bin/phpunit' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment