summaryrefslogtreecommitdiff
path: root/.zshrc
diff options
context:
space:
mode:
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc11
1 files changed, 9 insertions, 2 deletions
diff --git a/.zshrc b/.zshrc
index ca69823..4db1dbc 100644
--- a/.zshrc
+++ b/.zshrc
@@ -51,5 +51,12 @@ if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
fi
export GPG_TTY=$(tty)
-[ -e /etc/profile.d/autojump.sh ] && . /etc/profile.d/autojump.sh
-[ -e /etc/profile.d/vte-2.91.sh ] && . /etc/profile.d/vte-2.91.sh
+FILES=(
+ /etc/profile.d/autojump.sh
+ /etc/profile.d/vte-2.91.sh
+ /usr/share/fzf/key-bindings.zsh
+)
+
+for file in "${FILES[@]}"; do
+ [[ -e $file ]] && . "${file}"
+done