aboutsummaryrefslogtreecommitdiff
path: root/config/zsh/zshrc
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2024-08-18 19:19:13 +0530
committerAkshay Nair <phenax5@gmail.com>2024-08-18 19:19:13 +0530
commit6849b46055a1aa8af9150cdea887e7e703811930 (patch)
tree8265a76cc7210c6abdd9e83041c52728fcd60a86 /config/zsh/zshrc
parent27622b0928dc9278ce84ebe28b3ff06827528012 (diff)
downloadnixos-config-6849b46055a1aa8af9150cdea887e7e703811930.tar.gz
nixos-config-6849b46055a1aa8af9150cdea887e7e703811930.zip
Config sync
Diffstat (limited to 'config/zsh/zshrc')
-rw-r--r--config/zsh/zshrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/zsh/zshrc b/config/zsh/zshrc
index cc97978..6522186 100644
--- a/config/zsh/zshrc
+++ b/config/zsh/zshrc
@@ -17,9 +17,6 @@ setopt share_history # share command history data
export ZSH_CUSTOM_CONF_FILES="$HOME/.config/zsh";
-# FZF integration
-source <(fzf --zsh);
-
for f in $ZSH_CUSTOM_CONF_FILES/*.zsh; do source $f; done;
source $ZSH_CUSTOM_CONF_FILES/aliases.zsh;
@@ -28,6 +25,9 @@ if [[ "$DIRENV_DISABLE_HOOK" != "1" ]]; then
eval "$(direnv hook zsh)"
fi;
+# FZF integration
+source <(fzf --zsh);
+
# Plugins
# source ~/.config/zshplugins/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh;