-
Notifications
You must be signed in to change notification settings - Fork 14
/
.profile
41 lines (28 loc) · 870 Bytes
/
.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
# 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/
export LANG=en_US.UTF-8
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 && brew upgrade --cask && brew cleanup"
alias ql="qlmanage -p 2>/dev/null"
# output
date
export PATH="/opt/iOSOpenDev/bin:$PATH"
export PATH="$HOME/.fastlane/bin:$PATH"
eval "$(rbenv init -)"