-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbash_exports
35 lines (28 loc) · 1.1 KB
/
bash_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
# General
export DISPLAY=:0.0
export EDITOR=vim
# PATH
my_path=$HOME/bin
vmware_path=/Library/Application\ Support/VMWare\ Fusion
ruby_path=/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin
local_path=/usr/local/bin:/usr/local/sbin
export PATH=$my_path:$vmware_path:$ruby_path:$local_path:$PATH
# History stuff
shopt -s histappend
#shopt -s histverify
export HISTSIZE=
export HISTFILESIZE=
# Homebrew temp folder
export HOMEBREW_TEMP=/usr/local/tmp
# macports
export PATH=/opt/local/libexec/gnubin:$PATH
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
export MANPATH=/opt/local/share/man:$MANPATH
#osx color terminal
export CLICOLOR=1
export ANDROID_ROOT=/Users/vito/src/personal/android/android-ndk
export PATH="/Users/vito/android-sdk/tools:/Users/vito/android-sdk/platform-tools:/usr/lib64/ccache/bin:$PATH:$ANDROID_ROOT/build/prebuilt/darwin-x86/arm-eabi-4.4.0/bini:/opt/local/bin"
# don't put duplicate lines in the history. See bash(1) for more options
# don't overwrite GNU Midnight Commander's setting of `ignorespace'.
HISTCONTROL=$HISTCONTROL${HISTCONTROL+,}ignoredups
HISTCONTROL=ignoreboth