fixed "no such file or directory" on launch

master
Rachel Fae Fox 2020-08-08 18:15:39 -04:00
parent ac0913a9f2
commit 8206e69880
2 changed files with 6 additions and 6 deletions

View File

@ -11,13 +11,13 @@ fi
# Platorm Specific Vars # Platorm Specific Vars
case $OSTYPE in case $OSTYPE in
darwin*) darwin*)
. ~/dotfiles/profilevars_mac [ -f ~/dotfiles/profilevars_mac ] && . ~/dotfiles/profilevars_mac
;; ;;
freebsd*) freebsd*)
. ~/dotfiles/profilevars_bsd [ -f ~/dotfiles/profilevars_bsd ] && . ~/dotfiles/profilevars_bsd
;; ;;
linux-gnu) linux-gnu)
. ~/dotfiles/profilevars_linux [ -f ~/dotfiles/profilevars_linux] && . ~/dotfiles/profilevars_linux
;; ;;
esac esac
export PATH EDITOR GIT_EDITOR PAGER BROSWER LC_ALL export PATH EDITOR GIT_EDITOR PAGER BROSWER LC_ALL

6
zshrc
View File

@ -15,12 +15,12 @@ prompt clint
# Load additions # Load additions
case $OSTYPE in case $OSTYPE in
darwin*) darwin*)
. ~/dotfiles/zshrc_mac [ -f ~/dotfiles/zshrc_mac ] && . ~/dotfiles/zshrc_mac
;; ;;
freebsd*) freebsd*)
. ~/dotfiles/zshrc_bsd [ -f ~/dotfiles/zshrc_bsd ] && . ~/dotfiles/zshrc_bsd
;; ;;
linux-gnu) linux-gnu)
. ~/dotfiles/zshrc_linux [ -f ~/dotfiles/zshrc_linux] && . ~/dotfiles/zshrc_linux
;; ;;
esac esac