-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_profile
47 lines (37 loc) · 1.47 KB
/
.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
45
46
47
# nvm
export NVM_DIR="$HOME/.nvm"
. "$(brew --prefix nvm)/nvm.sh"
export PATH="/usr/local/sbin:$PATH"
# rbenv
eval "$(rbenv init -)"
export PATH="/usr/local/bin:$PATH"
export PATH=$HOME/.rbenv/shims:$PATH
# Aliases
alias weather="curl wttr.in"
alias ll="ls -la"
# mhk is the best
alias edit-profile="vi ~/.bash_profile"
alias .s="subl ."
alias .f="open ."
alias rsrc="source ~/.bash_profile"
# tiny care terminal
# List of accounts to read the last tweet from, comma separated
# The first in the list is read by the party parrot.
export TTC_BOTS='tinycarebot,selfcare_bot,5minselfcare'
# List of folders to look into for `git` commits, comma separated.
export TTC_REPOS='~/Repositories/github,~/Repositories/graphics-data,~/Repositories/feature,~/Repositories,~/Repositories/graphics,~/Repositories/dataviz'
# Location/zip code to check the weather for. Both 90210 and "San Francisco, CA"
# _should_ be ok (the zip code doesn't always work -- use a location
# first, if you can). It's using weather.service.msn.com behind the curtains.
export TTC_WEATHER='New York'
# Unset this if you _don't_ want to use Twitter keys and want to
# use web scraping instead.
export TTC_APIKEYS=true
# Refresh the dashboard every 20 minutes.
export TTC_UPDATE_INTERVAL=20
# Twitter api keys
export TTC_CONSUMER_KEY='KEY'
export TTC_CONSUMER_SECRET='SECRET'
export TTC_ACCESS_TOKEN='TOKEN'
export TTC_ACCESS_TOKEN_SECRET='SECRET'
export PS1="\`if [ \$? = 0 ]; then echo 💖; else echo 💙; fi\` \h:\W \u$ "