-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbash_exports
More file actions
49 lines (35 loc) · 1.04 KB
/
bash_exports
File metadata and controls
49 lines (35 loc) · 1.04 KB
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
49
# bash_exports
# Set the default editor
export EDITOR=`which vim`
export GIT_EDITOR=`which vim`
export SVN_EDITOR=`which vim`
export PAGER=`which less`
# Mongodb PATH
export PATH=$HOME/tools/mongodb/bin:$PATH
# Home bin
export PATH=$HOME/bin:$PATH
# Arcanist tools
export PATH=$HOME/bin/arcanist/bin:$PATH
# User sbin
export PATH=/usr/local/sbin:$PATH
# Maven bin
export PATH=/usr/local/Cellar/maven/3.0.4/libexec/bin:$PATH
# Android sdk
export PATH=/Applications/android-sdk-macosx/platform-tools:$PATH
export PATH=/Applications/android-sdk-macosx/tools:$PATH
# Opt Local sbin
export PATH=/opt/local/sbin:/opt/local/bin:$PATH
# Subversion
export PATH=/opt/subversion/bin:$PATH
# Mysql
export PATH=/usr/local/mysql/bin:$PATH
# Apktool path
export PATH=$PATH:$HOME/Miracle/decompiler/hack/tools
export PATH=$PATH:/Applications/android-sdk-macosx/build-tools/17.0.0
# Php
export PATH=/usr/local/Cellar/php54/5.4.15/bin:$PATH
# Apache ant
export PATH=/usr/local/apache-ant/bin:$PATH
# Rbenv
export PATH=$HOME/.rbenv/bin:$PATH
eval "$(rbenv init -)"