blob: 270817ee77bc421c8a636218876081ed14ba975f (
plain)
1
2
3
4
5
6
7
8
9
10
|
# XDG Paths
export XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-$HOME/.config}
export XDG_CACHE_HOME=${XDG_CACHE_HOME:-$HOME/.cache}
export XDG_DATA_HOME=${XDG_DATA_HOME:-$HOME/.local/share}
# ZSH config dir
export ZDOTDIR=$XDG_CONFIG_HOME/zsh
# User environment variables
export EDITOR="nvim"
|