aboutsummaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2021-11-04 22:24:11 +0100
committerBond_009 <bond.009@outlook.com>2021-11-04 22:24:11 +0100
commitbee944c9416fc263d561fc05af66ede395b1016b (patch)
tree76613a3975e05893876019706c4945353631d0b7 /zsh
parent36644e1ee58c00db3942c6039df7f2c737fbb950 (diff)
Streamline shell init
Diffstat (limited to 'zsh')
-rwxr-xr-xzsh/.zshrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index db49ac0..40f7fc1 100755
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -1,7 +1,4 @@
-# Exec general init script
-source ~/.initsh
-
-# If not running interactively, don't do anything else
+# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
@@ -122,3 +119,6 @@ ZSH_AUTOSUGGEST_USE_ASYNC=1
[ -n "$ZSH_SYNTAX_HIGHLIGHTING_PATH" ] && source "$ZSH_SYNTAX_HIGHLIGHTING_PATH"
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
+
+# Exec general init script
+source ~/.initsh