11 lines
188 B
Bash
11 lines
188 B
Bash
# ~/.bash_profile
|
|
#
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
if [ -x /bin/vim ]; then
|
|
export EDITOR="/bin/vim"
|
|
fi
|
|
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
export PATH="$PATH:$HOME/.local/bin"
|