Skip to content

Instantly share code, notes, and snippets.

@vicgonvt
Last active March 29, 2017 12:51
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 vicgonvt/8ef60257f082dc977c3625958fc10d19 to your computer and use it in GitHub Desktop.
Save vicgonvt/8ef60257f082dc977c3625958fc10d19 to your computer and use it in GitHub Desktop.
# 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 root@luminous.marinecdm.com'
alias cdmserver='ssh root@45.55.172.50'
alias dccserver='ssh root@104.131.102.94'
alias mcnewserver='ssh root@marineconnection.com'
# 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