diff options
author | self <self@sateoki.xyz> | 2022-02-19 16:37:25 +0000 |
---|---|---|
committer | self <self@sateoki.xyz> | 2022-02-19 16:37:25 +0000 |
commit | ca86889c0efecbaa59d55e8168a547a2a2e2b1fd (patch) | |
tree | 5a129fc06b19ce803134f8d6736dc9e45ef1449f /zsh/.zshenv | |
parent | 498f2d678a647974687aa62c42a709defcbfcd76 (diff) |
Moved zshrc path configs to zshenv to be able to remove zshrc from $HOME
Diffstat (limited to 'zsh/.zshenv')
-rw-r--r-- | zsh/.zshenv | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/zsh/.zshenv b/zsh/.zshenv index ba38a01..9b2dbdd 100644 --- a/zsh/.zshenv +++ b/zsh/.zshenv @@ -1 +1,11 @@ -## +# XDG Directories +export XDG_CONFIG_HOME="$HOME/.config" +export XDG_DATA_HOME="$HOME/.local/share" +export XDG_CACHE_HOME="$HOME/.cache" + +# Path Directories +export PATH="$PATH:$HOME/.local/bin" + +# ZSH Directories +export ZDOTDIR=$XDG_CONFIG_HOME/zsh +export ZSH_CACHE_DIR="$XDG_CACHE_HOME/zsh" |