-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzshrc
43 lines (34 loc) · 898 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
43
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
# 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"
# Starship (prompt)
#
eval "$(starship init zsh)"
# Atuin (history)
#
eval "$(atuin init zsh --disable-up-arrow)"