2020-07-15 13:50:56 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2020-11-18 14:40:36 +00:00
|
|
|
[ -f "$HOME/.config/user-dirs.dirs" ] && source $HOME/.config/user-dirs.dirs
|
|
|
|
|
2020-07-15 13:50:56 +00:00
|
|
|
export EDITOR='/usr/bin/vim'
|
|
|
|
export NOTMUCH_CONFIG="$HOME/.config/notmuch/config"
|
|
|
|
export MAKEFLAGS="-j$(grep -c ^processor /proc/cpuinfo)"
|
|
|
|
export MAILCAPS="$HOME/.config/mailcap/mailcaprc"
|
|
|
|
export PASSWORD_STORE_GENERATED_LENGTH='64'
|
|
|
|
export VIMINIT="source $HOME/.config/vim/vimrc"
|
|
|
|
export ZDOTDIR="$HOME/.config/zsh"
|
|
|
|
|
|
|
|
export PATH=/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:$HOME/.local/bin
|