Files
dotfiles/bash/.bash_profile
Eric Turner 4d67460a99 feat: add bash shell configuration
- Add .bashrc with custom bash settings
- Add .bash_profile for login shell configuration
- Add .bash_aliases for bash-specific aliases

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-02 20:21:41 -06:00

8 lines
155 B
Bash

# Bash Profile Configuration
# Source .bashrc if it exists
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi
# Add any login-specific configurations here