Update env loader

This commit is contained in:
Michael Campagnaro 2021-02-06 18:04:41 -05:00
parent fd99c1ad3c
commit 1469d88e5b
2 changed files with 7 additions and 11 deletions

View File

@ -392,8 +392,6 @@ if [[ $platform == 'Darwin' ]]; then
alias tt='rmtrash' alias tt='rmtrash'
elif [[ "${platform,,}" == *'ming'* ]]; then # convert to lowercase then compare with wildcard elif [[ "${platform,,}" == *'ming'* ]]; then # convert to lowercase then compare with wildcard
alias python='winpty python.exe'
alias python3='winpty python.exe'
#alias rm='echo "use trash command instead!"' #alias rm='echo "use trash command instead!"'
#alias rmr='echo "use trash command instead!"' #alias rmr='echo "use trash command instead!"'
alias trash='remove_windows_file' alias trash='remove_windows_file'
@ -401,8 +399,6 @@ elif [[ "${platform,,}" == *'ming'* ]]; then # convert to lowercase then compare
alias cgrep='cgrep.exe' alias cgrep='cgrep.exe'
fi fi
alias c='cd'
alias c-='cd -'
alias cd-='echo "Use c- instead"' alias cd-='echo "Use c- instead"'
alias ..='cd ../' alias ..='cd ../'
alias ...='cd ../..' alias ...='cd ../..'

View File

@ -13,13 +13,13 @@ esac
export PLATFORM=$platform export PLATFORM=$platform
export PLATFORM_OS=$platform_os export PLATFORM_OS=$platform_os
test -f "$HOME/.env.platform" && . $HOME/.env.platform test -f "$HOME/.env.platform" && . "$HOME/.env.platform"
test -f "$HOME/.env.common" && . $HOME/.env.common test -f "$HOME/.env.common-pre" && . "$HOME/.env.common-pre"
test -f "$HOME/.env.private" && . $HOME/.env.private test -f "$HOME/.env.private" && . "$HOME/.env.private"
test -f "$HOME/.aliases" && . $HOME/.aliases test -f "$HOME/.env.common-post" && . "$HOME/.env.common-post"
test -f "$HOME/.aliases.common" && . $HOME/.aliases.common test -f "$HOME/.aliases" && . "$HOME/.aliases"
test -f "$HOME/.aliases.private" && . $HOME/.aliases.private test -f "$HOME/.aliases.common" && . "$HOME/.aliases.common"
test -f "$HOME/.aliases.private" && . "$HOME/.aliases.private"
test -d "$HOME/bin" && export PATH=$HOME/bin/:$PATH test -d "$HOME/bin" && export PATH=$HOME/bin/:$PATH
test -d "$HOME/.dotfiles/bin" && export PATH=$HOME/.dotfiles/bin/:$PATH test -d "$HOME/.dotfiles/bin" && export PATH=$HOME/.dotfiles/bin/:$PATH