13 lines
263 B
Bash
13 lines
263 B
Bash
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
# Added by LM Studio CLI (lms)
|
|
export PATH="$PATH:/home/matt/.lmstudio/bin"
|
|
# End of LM Studio CLI section
|
|
|
|
export PYENV_ROOT="$HOME/.pyenv"
|
|
export PATH="$PYENV_ROOT/bin:$PATH"
|
|
eval "$(pyenv init - bash)"
|