-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.exports
35 lines (26 loc) · 1.15 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
# Make vim the default editor.
export EDITOR='vim';
# Make Python use UTF-8 encoding for output to stdin, stdout, and stderr.
export PYTHONIOENCODING='UTF-8';
# Increase Bash history size. Allow 32³ entries; the default is 500.
export HISTSIZE='32768';
export HISTFILESIZE="${HISTSIZE}";
# Omit duplicates and commands that begin with a space from history.
export HISTCONTROL='ignoreboth';
# Prefer US English and use UTF-8.
export LANG='en_US.UTF-8';
export LC_ALL='en_US.UTF-8';
#Lets add some colour to the termnial window
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
# Set Maven home directory
export M2_HOME=/usr/local/opt/maven/libexec
# Give Maven dinner as it is hungry
export MAVEN_OPTS="-Xms2048m"
# Go env settings
export GOPATH="$HOME/dev/go-workspace"
[[ -d "$GOPATH/bin" ]] && export PATH="$GOPATH/bin:$PATH";
# Add gnu sed to path if it has been installed
[[ -d $(brew --prefix)/opt/gnu-sed/libexec/gnubin ]] && export PATH="$(brew --prefix)/opt/gnu-sed/libexec/gnubin:$PATH";
# Add gnu grep to path if it has been installed
[[ -d $(brew --prefix)/opt/grep/libexec/gnubin ]] && export PATH="$(brew --prefix)/opt/grep/libexec/gnubin:$PATH";