-
Notifications
You must be signed in to change notification settings - Fork 0
/
zshrc
42 lines (32 loc) · 931 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
34
35
36
37
38
39
40
41
42
export DOTFILES_HOME=~/code/dotfiles
source $DOTFILES_HOME/common/aliases
source $DOTFILES_HOME/common/exports
source $DOTFILES_HOME/zsh/colors.zsh
source $DOTFILES_HOME/zsh/options.zsh
source $DOTFILES_HOME/zsh/autocomplete.zsh
source $DOTFILES_HOME/zsh/history.zsh
source $DOTFILES_HOME/zsh/pzac-prompt.zsh
source $DOTFILES_HOME/zsh/misc.zsh
source $DOTFILES_HOME/zsh/key-bindings.zsh
if [ -d /opt/local/share/fzf/shell ]; then
source /opt/local/share/fzf/shell/key-bindings.zsh
source /opt/local/share/fzf/shell/completion.zsh
fi
# ASDF
#
# if [ -d "$HOME/.asdf" ]; then
# source $HOME/.asdf/asdf.sh
# fi
# RBENV
#
# export PATH="$HOME/.rbenv/bin:$PATH"
# whence rbenv > /dev/null && eval "$(rbenv init -)"
# PYENV
#
# whence pyenv > /dev/null && eval "$(pyenv init -)"
# MISE
#
whence mise > /dev/null && eval "$(mise activate zsh)"
# NVM
#
# [ -s "/usr/local/opt/nvm/nvm.sh" ] && . "/usr/local/opt/nvm/nvm.sh"