Files
dotfiles/zsh_config/zshrc
T
2024-09-06 08:31:49 -04:00

24 lines
627 B
Bash

if [ "$TERM_PROGRAM" != "Apple_Terminal" ]; then
eval "$(oh-my-posh init zsh --config ~/dotfiles/misc_config/ohmyposh.json)"
fi
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
[[ "$TERM_PROGRAM" == "CodeEditApp_Terminal" ]] && . "/Applications/CodeEdit.app/Contents/Resources/codeedit_shell_integration.zsh"
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"