dots/.bash_aliases
Yongmin Hong 78ba4e6767
Add new aliases
Signed-off-by: Yongmin Hong <revi@pobox.com>
2020-05-05 23:28:15 +09:00

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'