1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-10-17 20:52:40 +00:00
dotfiles/.bash_profile

22 lines
480 B
Bash
Raw Normal View History

2022-03-22 19:21:40 +00:00
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
2022-08-05 11:46:13 +00:00
. ~/.bashrc
2022-03-22 19:21:40 +00:00
fi
# User specific environment and startup programs
2022-11-02 15:17:34 +00:00
export PATH="$HOME/.npm-global/bin:$PATH:$HOME/bin/nvim/bin"
2022-10-09 12:47:42 +00:00
. "$HOME/.cargo/env"
2022-11-02 15:17:34 +00:00
# >>> juliaup initialize >>>
# !! Contents within this block are managed by juliaup !!
case ":$PATH:" in *:/var/home/mo/.julia/juliaup/bin:*);; *)
export PATH=/var/home/mo/.julia/juliaup/bin${PATH:+:${PATH}} ;;
esac
# <<< juliaup initialize <<<