1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-26 01:07:11 -07:00

use hash -d's in hash -d

This commit is contained in:
Connor Olding 2018-02-21 10:43:05 +01:00
parent a9f4ebdbbb
commit f116182d0f

View File

@ -4,12 +4,12 @@
umask 022 # don't inherit last umask. pip will break itself.
[ -z "$MSYSTEM" ] && cdrive="/cygdrive/c" || cdrive="/c"
hash -d cyg="$cdrive/cygwin/home/$USER"
hash -d msys="$cdrive/msys64/home/$USER"
hash -d e="/media/chibi"
hash -d c="$cdrive"
hash -d win="$cdrive/Users/$USER"
hash -d mm="$cdrive/Program Files (x86)/mupen64plus/mm"
hash -d cyg=~c"/cygwin/home/$USER"
hash -d msys=~c"/msys64/home/$USER"
hash -d e="/media/chibi"
hash -d win=~c"/Users/$USER"
hash -d mm=~c"/Program Files (x86)/mupen64plus/mm"
hash -d py=~win"/Dropbox/py"
ADDPATH() {
@ -62,7 +62,7 @@ export VST_SDK_DIR="$HOME/src/vstsdk2.4"
export LADSPA_PATH="/usr/lib/ladspa"
export NQDIR="$HOME/play"
# colors
# enable colors
for x in ls dir vdir grep fgrep egrep; do
alias $x="$x --color=auto"
done