forked from bjeanes/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathzshrc
33 lines (24 loc) · 715 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 <sorin.ionescu@gmail.com>
#
# Source Prezto.
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi
# Customize to your needs...
export EDITOR='code'
export GIT_EDITOR='$EDITOR --wait'
export PATH="$HOME/.yarn/bin:$PATH"
export PATH=$PATH:$USER_BASE_PATH/bin
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
. ~/.ryan-aliases
. ~/.gitaliases
export DISABLE_AUTO_TITLE=true # disable autotitle in tmux
. /usr/local/etc/profile.d/z.sh
. /usr/local/opt/asdf/asdf.sh
export GOPATH=~/code/go
export DISABLE_SPRING=1
export PATH="/usr/local/opt/mongodb-community@3.4/bin:$PATH"