15 lines
319 B
Plaintext
15 lines
319 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"
|
|
|
|
# Enable ssh-agent
|
|
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
|