aboutsummaryrefslogblamecommitdiff
path: root/sh/profile
blob: d5a2fec88a0bcaf4643fd9b76d9c5ddf8bc871b3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                          
                            






                                  
# Set editor
export EDITOR='vi'
export VISUAL="$EDITOR"

# Set pager
export PAGER='less'

# Add ~/.local/bin to PATH
[ -d "$HOME/.local/bin" ] && PATH="$HOME/.local/bin:$PATH"
export PATH

# Load any supplementary scripts
if [ -d "$HOME/.profile.d" ]
then
    for file in $HOME/.profile.d/*
    do
        . $file
    done
fi