17 lines
470 B
Bash
17 lines
470 B
Bash
# Arcanist
|
|
export PATH="$PATH:$HOME/phacility/arcanist/bin/"
|
|
# Nano the best editor ever since the inception of the computers
|
|
export EDITOR="/usr/bin/nano"
|
|
# Prevent macOS terminal emitting Korean
|
|
export LANG="en_US.UTF-8"
|
|
# Fuck VIM
|
|
alias vim='nano'
|
|
alias gpgrefresh='gpg --refresh-keys'
|
|
alias la='ls -a'
|
|
# PHP stuff
|
|
alias pear='$HOME/.pear/bin/pear'
|
|
alias phpcs='$HOME/.composer/vendor/bin/phpcs'
|
|
# Python3 as py
|
|
alias py='python3'
|
|
# Python2 as py2
|
|
alias py2='python'
|