151
|
1 source ~/.zsh/colors.zsh
|
|
2 source ~/.zsh/setopt.zsh
|
|
3 source ~/.zsh/exports.zsh
|
|
4 source ~/.zsh/prompt.zsh
|
|
5 source ~/.zsh/completion.zsh
|
|
6 source ~/.zsh/aliases.zsh
|
|
7 source ~/.zsh/bindkeys.zsh
|
|
8 source ~/.zsh/history.zsh
|
|
9 source ~/.zsh/zsh_hooks.zsh
|
86
|
10
|
151
|
11 # Plugins
|
|
12 source ~/.fzf.zsh
|
|
13 source ~/.zsh/zsh-history-substring-search.zsh
|
|
14 source ~/.zsh/z.sh
|
0
|
15
|
151
|
16 precmd() {
|
|
17 if [[ -n "$TMUX" ]]; then
|
152
|
18 export TERM=screen-256color
|
151
|
19 tmux setenv "$(tmux display -p 'TMUX_PWD_#D')" "$PWD"
|
106
|
20 fi
|
|
21 }
|
152
|
22
|
|
23 [[ -f ~/.zshrc.local ]] && source ~/.zshrc.local
|