dotfiles/dotconf/bash_profile

12 lines
213 B
Bash
Raw Normal View History

2024-02-18 12:36:03 +01:00
# .bash_profile -*- mode: sh -*-
# Load login settings and environment variables
if [[ -f ~/.profile ]]; then
source ~/.profile
fi
# Load interactive settings
if [[ -f ~/.bashrc ]]; then
source ~/.bashrc
fi