12 lines
334 B
Bash
12 lines
334 B
Bash
export VIMINIT='source ~/.config/vim/vimrc'
|
|
export PASSWORD_STORE_GENERATED_LENGTH='64'
|
|
export ZDOTDIR="$HOME/.config/zsh"
|
|
|
|
source "$HOME/.config/environment"
|
|
|
|
if [ -x "$(command -v gpgconf)" ]; then
|
|
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
|
gpgconf --launch gpg-agent
|
|
fi
|
|
|
|
[ -x "$(command -v mpd)" ] && mpd
|