10 lines
266 B
Bash
10 lines
266 B
Bash
# ~/.bash_profile
|
|
#
|
|
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
export PATH="$PATH:$HOME/.cargo/bin"
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
# Load items that are common to bash and zsh
|
|
[[ -f ~/SetupCockpit/dotfiles/shell/profile ]] && . ~/SetupCockpit/dotfiles/shell/profile
|