-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexports
48 lines (37 loc) · 1.27 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
37
38
39
40
41
42
43
44
45
46
47
48
# Make vim the default editor
export EDITOR="vim"
# BASH HISTORY #
################
# Larger bash history (allow 32³ entries; default is 500)
export HISTSIZE=32768
export HISTFILESIZE=$HISTSIZE
export HISTCONTROL=ignoredups
# Append to the Bash history file, rather than overwriting it
shopt -s histappend
# LANGUAGE PREFERENCES #
########################
# Prefer US English and use UTF-8
export LANG="en_US"
export LC_ALL="en_US.UTF-8"
# MAN PAGES #
#############
# 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"
# POSTGRES #
############
# Define where postgres stores its data
export PGDATA="/usr/local/var/postgres/"
# Define homebrew paths, used in postgres aliases
export BREW_BASE="/usr/local/"
export BREW_BIN="$BREW_BASE/bin"
# This is so that psycopg2 package works.
export DYLD_FALLBACK_LIBRARY_PATH=/Applications/Postgres93.app/Contents/MacOS/lib:$DYLD_LIBRARY_PATH
# JAVA CLASSPATH #
# ################
export CLASSPATH="/Users/jpvelez/repos/learning-scala/atomic-scala-examples/examples/:$CLASSPATH"
# sp development bin
# export PATH=$(cd ~/repos/dr/bin && pwd):$PATH
# SBT OPTIONS
export SBT_OPTS="-Xmx10g -Xmn1g -Dsun.io.serialization.extendedDebugInfo=true"