# vim: ft=sh

# Vibepit shell settings

# Alias to return to the current project dir.
alias cdp='cd $VIBEPIT_PROJECT_DIR'

if [ -x "/home/linuxbrew/.linuxbrew/bin/brew" ]; then
	eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
fi

export HOMEBREW_NO_ENV_HINTS=1

# Use the vibepit tmux theme unless the user has their own config.
if [ -z "$TMUX_CONF" ] && [ ! -f "$HOME/.tmux.conf" ]; then
	export TMUX_CONF="/etc/vibepit/tmux.conf"
	alias tmux='tmux -f "$TMUX_CONF"'
fi
