-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.zshrc
More file actions
17 lines (13 loc) · 687 Bytes
/
Copy path.zshrc
File metadata and controls
17 lines (13 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
### ---- ZSH HOME -----------------------------------------------
export ZSH=$HOME/.zsh
### ---- Source plugins -----------------------------------------
[[ -f $ZSH/plugins.zsh ]] && source $ZSH/plugins.zsh
### ---- Source other configs -----------------------------------
ZSH_CONFIG=$ZSH/config
[[ -f $ZSH_CONFIG/completions.zsh ]] && source $ZSH_CONFIG/completions.zsh
[[ -f $ZSH_CONFIG/history.zsh ]] && source $ZSH_CONFIG/history.zsh
[[ -f $ZSH_CONFIG/aliases.zsh ]] && source $ZSH_CONFIG/aliases.zsh
[[ -f $ZSH_CONFIG/path.zsh ]] && source $ZSH_CONFIG/path.zsh
### ---- Shell integrations -----------------------------------------
eval "$(fzf --zsh)"
eval "$(starship init zsh)"