12 lines
242 B
Plaintext
12 lines
242 B
Plaintext
# XDG
|
|
export XDG_CONFIG_HOME=$HOME/.config
|
|
export XDG_DATA_HOME=$XDG_CONFIG_HOME/local/share
|
|
export XDG_CACHE_HOME=$XDG_CONFIG_HOME/cache
|
|
|
|
# editor
|
|
export EDITOR="nvim"
|
|
export VISUAL="nvim"
|
|
|
|
# zsh config
|
|
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|