-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bash_profile
44 lines (34 loc) · 995 Bytes
/
.bash_profile
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
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi
#RBENV
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
export RBENV_ROOT=/usr/local/var/rbenv
export PATH="$HOME/.rbenv/bin:$PATH"
export PATH="/usr/local/bin:$PATH"
export TERM=xterm-256color
export ALTERNATE_EDITOR="" EDITOR=emacsclient VISUAL=emacsclient
export CLICOLOR=1
export ENHANCED_RAILS_CONSOLE=false
alias emacs='emacsclient -t'
# Stripe Credentials
export STRIPE_SECRET_KEY=needs-a-key
export STRIPE_PUBLISHABLE_KEY=needs-a-token
# Other settings
export MAILER_HOST=archer.dev
export NEWRELIC_DISPATCHER=pow
export MAILER_USE_MAILCATCHER=true
# slack
export SLACK_TOKEN=
export PATH="$(brew --prefix)/bin:$PATH"
#NVM
#export NVM_DIR=~/.nvm
#source $(brew --prefix nvm)/nvm.sh
#NPM prefix
export PREFIX="$(npm config get prefix)"
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"
export PATH="~/.node/bin:$PATH"
export PATH
#export PATH="$HOME/.ndenv/bin:$PATH"
#eval "$(ndenv init -)"