Reorder initialization
This commit is contained in:
parent
31b080d00f
commit
5d8dddb3a0
1 changed files with 8 additions and 9 deletions
|
@ -73,13 +73,18 @@ source $ZSH/oh-my-zsh.sh
|
||||||
# USER CONFIGURATION
|
# USER CONFIGURATION
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
if [[ -f "$HOME/.zshrc.local" ]]; then
|
export FAVORITE_COMMAND1="{{ .tmux_favorite1 }}"
|
||||||
source "$HOME/.zshrc.local"
|
export FAVORITE_COMMAND2="{{ .tmux_favorite2 }}"
|
||||||
fi
|
export FAVORITE_COMMAND3="{{ .tmux_favorite3 }}"
|
||||||
|
export FAVORITE_COMMAND4="{{ .tmux_favorite4 }}"
|
||||||
|
|
||||||
alias cdd='cd {{ .deploydir }}'
|
alias cdd='cd {{ .deploydir }}'
|
||||||
export cdd={{ .deploydir }}
|
export cdd={{ .deploydir }}
|
||||||
|
|
||||||
|
if [[ -f "$HOME/.zshrc.local" ]]; then
|
||||||
|
source "$HOME/.zshrc.local"
|
||||||
|
fi
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# History
|
# History
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
@ -158,12 +163,6 @@ function ssh() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
export FAVORITE_COMMAND1="{{ .tmux_favorite1 }}"
|
|
||||||
export FAVORITE_COMMAND2="{{ .tmux_favorite2 }}"
|
|
||||||
export FAVORITE_COMMAND3="{{ .tmux_favorite3 }}"
|
|
||||||
export FAVORITE_COMMAND4="{{ .tmux_favorite4 }}"
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Fzf
|
# Fzf
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
Loading…
Add table
Reference in a new issue