cvsdist c7d2abb
# .bashrc
cvsdist c7d2abb
533b8a0
# Source global definitions
533b8a0
if [ -f /etc/bashrc ]; then
icedrocket b05f1d7
    . /etc/bashrc
533b8a0
fi
533b8a0
739b272
# User specific environment
icedrocket b05f1d7
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]; then
e3b3cd9
    PATH="$HOME/.local/bin:$HOME/bin:$PATH"
e3b3cd9
fi
739b272
export PATH
739b272
Roman Rakus ad7ff77
# Uncomment the following line if you don't like systemctl's auto-paging feature:
Roman Rakus ad7ff77
# export SYSTEMD_PAGER=
Roman Rakus ad7ff77
61c141d
# User specific aliases and functions
99cafb7
if [ -d ~/.bashrc.d ]; then
icedrocket b05f1d7
    for rc in ~/.bashrc.d/*; do
icedrocket b05f1d7
        if [ -f "$rc" ]; then
icedrocket b05f1d7
            . "$rc"
icedrocket b05f1d7
        fi
icedrocket b05f1d7
    done
99cafb7
fi
99cafb7
unset rc