diff --git a/.bash_aliases b/.bash_aliases index 371e960..480a3bd 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -1,6 +1,6 @@ # Arcanist export PATH="$PATH:$HOME/phacility/arcanist/bin/" -# Editor FTW +# 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" @@ -11,3 +11,7 @@ # 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'