dotfiles/zshenv

20 lines
405 B
Plaintext
Raw Normal View History

2022-01-05 03:41:41 +00:00
export EDITOR=vim
export PAGER=less
export LESS=RSM
if [ -f "$HOME/.cargo/env" ]; then
. "$HOME/.cargo/env"
fi
if [ -f "/opt/zig" ]; then
export PATH=$PATH:/opt/zig
fi
2024-05-21 13:52:10 +00:00
if [ -d "$HOME/.pyenv" ]; then
export PYENV_ROOT="$HOME/.pyenv"
command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
fi
export CARGO_MOMMYS_MOODS="chill/ominous/thirsty/yikes"