Files
dotfiles/zsh/.zshrc
2025-09-18 11:10:41 -06:00

26 lines
615 B
Bash

# pyenv config
export PYENV_ROOT="$HOME/.pyenv"
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init - zsh)"
# pyenv virtualenv config
eval "$(pyenv virtualenv-init -)"
# Load Functions
# KEEP THIS AT THE BOTTOM
fpath=( ~/.zsh_functions "${fpath[@]}" )
autoload -Uz $fpath[1]/*(.:t)
# Initialize Starship
eval "$(starship init zsh)"
# fnm
FNM_PATH="/home/phil/.local/share/fnm"
if [ -d "$FNM_PATH" ]; then
export PATH="/home/phil/.local/share/fnm:$PATH"
eval "`fnm env`"
fi
autoload bashcompinit
bashcompinit
source "/home/phil/.local/share/bash-completion/completions/appman"