1
0
Fork 0
mirror of https://github.com/MillironX/dotfiles.git synced 2024-11-15 03:13:10 +00:00
dotfiles/executable_dot_bashrc.tmpl

28 lines
589 B
Cheetah
Raw Normal View History

# shellcheck shell=bash
2021-08-24 23:16:19 +00:00
# .bashrc
if [ -f "$HOME/.modules" ]; then
source $HOME/.modules
fi
2021-08-25 01:00:29 +00:00
# Hook virtual environment modifers
source $HOME/.hooks
2021-08-24 23:16:19 +00:00
# User specific aliases and functions
2021-08-25 00:46:22 +00:00
source $HOME/.aliases
2021-08-24 23:16:19 +00:00
2021-08-25 01:25:16 +00:00
# >>> direnv initalize >>>
2021-09-01 17:16:17 +00:00
if [ $(command -v direnv) ]; then
eval "$(direnv hook bash)"
fi
2021-08-25 01:25:16 +00:00
# <<< direnv initalize <<<
source $HOME/.envvar
2021-10-12 22:23:04 +00:00
if [ $(command -v env_parallel.bash) ]; then
source $(which env_parallel.bash)
fi
2021-10-11 14:47:50 +00:00
2021-08-24 23:16:19 +00:00
# Make the prompt pretty, just in case we're stuck in bash land
export PS1="[\[\e[32m\]\u\[\e[m\]@\[\e[33m\]\h\[\e[m\] \[\e[34m\]\W\[\e[m\]] \\$ "