X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;f=core%2F20_home%2F20_home.zprofile;h=4bad86a4b37f8fb6dadc7a41afabb14789042879;hb=9bcbfa018f35a64151b919e51cdfac6431c63268;hp=e4d19b172031ff2d6d1726a402df04f6914f0035;hpb=8c266c1d4a6e320b1447a03381322738868df8f7;p=ax-zsh.git diff --git a/core/20_home/20_home.zprofile b/core/20_home/20_home.zprofile index e4d19b1..4bad86a 100644 --- a/core/20_home/20_home.zprofile +++ b/core/20_home/20_home.zprofile @@ -7,18 +7,3 @@ [[ -w "/usr/local/home/$LOGNAME" ]] \ && export LOCAL_HOME="/usr/local/home/$LOGNAME" \ || export LOCAL_HOME="$HOME" - -# Setup XDG cache directory -export XDG_CACHE_HOME="$LOCAL_HOME/.cache" -mkdir -p "$XDG_CACHE_HOME" - -# Setup ZSH cache directory -export ZSH_CACHE_DIR="$XDG_CACHE_HOME/zsh" -mkdir -p "$ZSH_CACHE_DIR" - -# Update PATH to include directories inside of the $HOME directory -typeset -U path -for dir in ~/bin ~/sbin ~/Applications; do - [[ -d "$dir" ]] && path[1,0]="$dir" -done -unset dir