Files
dotfiles/zsh_config/zshrc
T
2025-09-04 10:19:26 -04:00

27 lines
762 B
Bash

eval "$(oh-my-posh init zsh --config ~/dotfiles/misc_config/ohmyposh.json)"
source $(brew --prefix nvm)/nvm.sh
source <(fzf --zsh)
# Load seperated config files
for conf in "$HOME/dotfiles/zsh_config/"*.zsh; do
source "${conf}"
done
unset conf
eval $(thefuck --alias)
eval "$(zoxide init zsh)"
# eval "$(starship init zsh)"
eval "$(atuin init zsh)"
# bun completions
[ -s "/Users/ghall/.bun/_bun" ] && source "/Users/ghall/.bun/_bun"
# ggc completions
if [ -f "$(go env GOPATH)/pkg/mod/github.com/bmf-san/ggc/v5@*/tools/completions/ggc.zsh" ]; then
. "$(go env GOPATH)"/pkg/mod/github.com/bmf-san/ggc/v5@*/tools/completions/ggc.zsh
fi
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH="$PATH:$HOME/.rvm/bin"