-
Notifications
You must be signed in to change notification settings - Fork 0
/
.profile
23 lines (20 loc) · 830 Bytes
/
.profile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# =============================================================================
# profile
# -----------------------------------------------------------------------------
# vars available to all programs
# =============================================================================
export EDITOR="vi"
export VISUAL="vi -f"
if command -v less >/dev/null; then
export PAGER=less
fi
# -----------------------------------------------------------------------------
# http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
# -----------------------------------------------------------------------------
export XDG_CONFIG_HOME=~/etc
export XDG_DATA_HOME=~/share
export XDG_CACHE_HOME=~/var
if [ -n "$BASH_VERSION" ]; then
[ -f ~/.bashrc ] && source ~/.bashrc
[ -f ~/.bash_local ] && source ~/.bash_local
fi