-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zsh_aliases
25 lines (25 loc) · 1.09 KB
/
.zsh_aliases
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
alias lsa="ls -lah"
alias emacs="emacs -nw"
alias em="emacs -nw"
alias aliases="emacs /Users/clark/.zsh_aliases && source /Users/clark/.zsh_aliases"
alias zshconfig="emacs /Users/clark/.zshrc && source /Users/clark/.zshrc &> /dev/null"
alias check="phpcs --extensions=php --standard=PSR1,PSR2,PSR12"
alias fix="phpcbf --extensions=php --standard=PSR1,PSR2,PSR12"
alias nginxconf="emacs /usr/local/etc/nginx/nginx.conf &&
sudo /usr/local/bin/nginx -s reload"
alias shipgit="cat ~/.spaceship-prompt-status.txt"
alias docs="cd ~/Documents"
alias external="cd /Volumes/external"
alias code="code . -r"
alias copy="pbcopy"
alias ports="lsof -iTCP -sTCP:LISTEN -P -n"
alias funcs="emacs ~/.zsh_functions && source
~/.zsh_functions"
alias oldphp="brew unlink --force php72 && brew link --force php56 && brew services restart php"
alias newphp="brew unlink --force php56 && brew link --force php72 && brew services restart php"
alias mountdev="sshfs [email protected]:/home/ccmitche/ ~/Dev"
alias unmountdev="sudo umount ~/Dev"
alias art="php artisan"
alias artisan="php artisan"
alias python="python3"
alias pip="pip3"