dotfiles/dot-zshenv

15 lines
319 B
Plaintext
Raw Normal View History

2024-10-26 08:38:32 -04:00
# 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"
2024-10-27 20:45:34 -04:00
# zsh config
2024-10-26 08:38:32 -04:00
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
2024-11-21 06:42:02 -05:00
# Enable ssh-agent
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"