-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.exports
27 lines (23 loc) · 936 Bytes
/
.exports
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
export EDITOR=vim
export VISUAL="$EDITOR"
export PATH_TO_PLAYGROUND="$HOME/playground"
export PATH_TO_PROJECTS="$HOME/projects"
export PATH_TO_JOURNAL="$HOME/journal"
# less has coloured output, which also helps with manpages
export LESS=-R
export LESS_TERMCAP_mb=$'\E[1;31m' # begin blink
export LESS_TERMCAP_md=$'\E[1;36m' # begin bold
export LESS_TERMCAP_me=$'\E[0m' # reset bold/blink
export LESS_TERMCAP_so=$'\E[01;44;33m' # begin reverse video
export LESS_TERMCAP_se=$'\E[0m' # reset reverse video
export LESS_TERMCAP_us=$'\E[1;32m' # begin underline
export LESS_TERMCAP_ue=$'\E[0m' # reset underline
# Configure history
export HISTSIZE=10000
export HISTFILESIZE=10000
export HISTCONTROL=ignoredups
export PATH="$PATH:$HOME/bin"
# This should be the last line of the file
# For local changes
# Don't make edits below this
[ -f "$HOME/.exports.local" ] && source "$HOME/.exports.local" || true