forked from startup-class/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.exports
36 lines (29 loc) · 1.22 KB
/
.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
28
29
30
31
32
33
34
35
36
# Make emacs the default editor
export VISUAL='vim'
export EDITOR='$VISIAL'
# Larger bash history (allow 32³ entries; default is 500)
export HISTSIZE=32768
export HISTFILESIZE=$HISTSIZE
# Avoid succesive duplicates in the bash command history.
# Based on http://stefaanlippens.net/my_bashrc_aliases_profile_and_other_stuff
export HISTCONTROL=ignoredups
# timestamps for bash history. www.debian-administration.org/users/rossen/weblog/1
# saved for later analysis
export HISTTIMEFORMAT='%F %T '
# Make some commands not show up in history
export HISTIGNORE="ls:cd:cd -:pwd:exit:date:* --help"
# sort options
# Ensures cross-platform sorting behavior of GNU sort.
# http://www.gnu.org/software/coreutils/faq/coreutils-faq.html#Sort-does-not-sort-in-normal-order_0021
# unset LANG
# export LC_ALL=POSIX
# Highlight section titles in manual pages
export LESS_TERMCAP_md="$ORANGE"
# Don’t clear the screen after quitting a manual page
export MANPAGER="less -X"
# Always enable colored `grep` output
export GREP_COLOR='1;31' # green for matches
# Link Homebrew casks in `/Applications` rather than `~/Applications`
export HOMEBREW_CASK_OPTS="--appdir=/Applications"
# AWS deafult profile environment variable
#export AWS_DEFAULT_PROFILE="ricardo"