diff options
Diffstat (limited to '.bashrc')
-rw-r--r-- | .bashrc | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -1,8 +1,15 @@ source ~/.shells/alias.sh source ~/.shells/exports.sh -#source ~/dotfiles/.shells/bash_completion +source /etc/profile export PATH=/home/$USER/.local/bin:$PATH +if [ -e /etc/profile.env ] ; then + . /etc/profile.env +fi + +for sh in /etc/profile.d/*.sh ; do + [ -r "$sh" ] && . "$sh" +done ## Get completions for sh in /etc/bash/bashrc.d/* ; do @@ -16,9 +23,7 @@ else PS1+='\u@\h \w \$ ' fi -## eat integration -# [ -n "$EAT_SHELL_INTEGRATION_DIR" ] && \ -# source "$EAT_SHELL_INTEGRATION_DIR/bash" + ## doas > sudo complete -cf doas |