forked from silvansky/macscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.profile
More file actions
44 lines (30 loc) · 941 Bytes
/
.profile
File metadata and controls
44 lines (30 loc) · 941 Bytes
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
# exports
export PS1="\[$(tput setaf 6)\]\u \W$\[$(tput sgr0)\] "
export EDITOR=mcedit
export GIT_EDITOR=mcedit
export LESS_TERMCAP_mb=$'\E[01;33m'
export LESS_TERMCAP_md=$'\E[01;31m'
export LESS_TERMCAP_me=$'\E[0m'
export LESS_TERMCAP_so=$'\E[01;42;30m'
export LESS_TERMCAP_se=$'\E[0m'
export LESS_TERMCAP_us=$'\E[01;32m'
export LESS_TERMCAP_ue=$'\E[0m'
export USE_LOCAL_PODS=yes
export LOCAL_PODS_FOLDER=~/Projects/
if [ -e ~/.privatevars ]; then
. ~/.privatevars
fi
# aliases
alias psg="ps -A | grep"
alias lsa="ls -a"
alias init-ssh="exec ssh-agent bash && ssh-add && security unlock-keychain"
alias brewup="brew update && brew upgrade"
alias ql="qlmanage -p 2>/dev/null"
# output
date
export iOSOpenDevPath=/opt/iOSOpenDev
export iOSOpenDevDevice=
export PATH=/opt/iOSOpenDev/bin:$PATH
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting
# selecting ruby version with rvm
source $(rvm 2.0.0-p353 do rvm env --path)