-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzshrc
33 lines (26 loc) · 788 Bytes
/
zshrc
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
#
# Executes commands at the start of an interactive session.
#
# Authors:
# Sorin Ionescu <[email protected]>
#
# Source Prezto.
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi
# source "/usr/local/lib/python2.7/site-packages/powerline/bindings/zsh/powerline.zsh"
# Customize to your needs...
export CLICOLOR=1
alias ls='ls -hGF'
alias ll='ls -hlAGF'
alias vi='vim'
alias jfs='fasd -f -e subl '
alias js='fasd -e subl '
eval "$(direnv hook $0)"
export NVM_DIR=~/.nvm
source ~/.nvm/nvm.sh
export PATH=$PATH:/usr/local/opt/go/libexec/bin
export PGDATA=/usr/local/var/postgres/data/
export JAVA_HOME=$(/usr/libexec/java_home)
export ANDROID_HOME=/Users/stefano/Library/Android/sdk
export PATH=$PATH:$ANDROID_HOME/bin