summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2022-03-07 21:58:56 -0800
committerMatt Turner <mattst88@gmail.com>2022-03-07 21:58:56 -0800
commit6b58aefd0a52353162854ce1309cf66b2a0504bd (patch)
tree413fe210426468f0eefa26d7ce3833e427161d0d
parent2c4aabc9e3c3fc976aa8f5facfd6e0737ffdf925 (diff)
Update .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