mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-08 13:30:47 -05:00
bash: add env vars for pyenv and rustup
This commit is contained in:
parent
2a4410ef76
commit
94e0ee773e
1 changed files with 6 additions and 0 deletions
|
@ -61,6 +61,12 @@ export NPM_CONFIG_USERCONFIG="${XDG_CONFIG_HOME}/npm/npmrc"
|
|||
export PYTHONSTARTUP="${XDG_CONFIG_HOME}/python/pythonrc"
|
||||
export PYTHONPYCACHEPREFIX="${XDG_CACHE_HOME}/python"
|
||||
export PYTHONUSERBASE="${XDG_DATA_HOME}/python"
|
||||
export PYENV_ROOT="${XDG_DATA_HOME}/pyenv"
|
||||
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
|
||||
eval "$(pyenv init -)"
|
||||
|
||||
# rust
|
||||
export RUSTUP_HOME="${XDG_DATA_HOME}/rustup"
|
||||
|
||||
# wine
|
||||
export WINEPREFIX="${XDG_DATA_HOME}/wine"
|
||||
|
|
Loading…
Reference in a new issue