zshrc/environment.zsh

15 lines
502 B
Bash
Raw Permalink Normal View History

2012-08-23 11:08:03 +02:00
# @author Sebastian Tramp <mail@sebastian.tramp.name>
# @license http://opensource.org/licenses/gpl-license.php
#
# Basic environment settings related to the zsh compiliation (not private)
source /etc/profile
2012-08-23 11:08:03 +02:00
# XDG Base Directory Specification
# http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_CACHE_HOME="$HOME/.cache"
export ZSH_CONFIG="$XDG_CONFIG_HOME/zsh"
export ZSH_CACHE="$XDG_CACHE_HOME/zsh"
mkdir -p $ZSH_CACHE