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
49 lines (34 loc) · 1.11 KB
/
.profile
File metadata and controls
49 lines (34 loc) · 1.11 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
# 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 && brew cleanup"
alias ql="qlmanage -p 2>/dev/null"
alias shots="open /Users/valentine/Dropbox/Скриншоты"
# output
date
export PATH="/opt/iOSOpenDev/bin:$PATH"
export PATH="$HOME/.fastlane/bin:$PATH"
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting
# selecting ruby version with rvm
source $(rvm 2.3.1 do rvm env --path)
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
export NODE_PATH="/usr/local/lib/node_modules"