]> arthur.barton.de Git - OhMyZshExtensions.git/blob - plugins/1_local/1_local.plugin.zsh
1_local.plugin.zsh: Setup locale cache and home directory paths
[OhMyZshExtensions.git] / plugins / 1_local / 1_local.plugin.zsh
1 # 1_local.plugin.zsh
2 # 2015-03-17, alex@barton.de
3
4 [ -d "/usr/local/home" -a ! -d "/usr/local/home/$LOGNAME" ] \
5         && mkdir "/usr/local/home/$LOGNAME" >/dev/null 2>&1
6
7 [ -w "/usr/local/home/$LOGNAME" ] \
8         && export LOCAL_HOME="/usr/local/home/$LOGNAME" \
9         || export LOCAL_HOME="$HOME"
10
11 # Setup XDG cache directory
12 export XDG_CACHE_HOME="$LOCAL_HOME/.cache"
13
14 # Setup environment for ccache, if installed
15 type ccache >/dev/null && export CCACHE_DIR="$XDG_CACHE_HOME/ccache"