summaryrefslogtreecommitdiff
path: root/dot_zsh/plugins/fuzzy
diff options
context:
space:
mode:
authorChloe Kudryavtsev <toast@toast.cafe>2020-04-30 21:32:27 -0400
committerChloe Kudryavtsev <toast@toast.cafe>2020-04-30 21:32:27 -0400
commita3334ba40d8ca98b5e8b58eb4ae758b41a262f9d (patch)
tree324192fcc345583a9c2c9fb0a1dc7962184a379e /dot_zsh/plugins/fuzzy
parentanypaste: add anyminio plugin (diff)
just autodetect fuzzy files
Diffstat (limited to 'dot_zsh/plugins/fuzzy')
-rw-r--r--dot_zsh/plugins/fuzzy6
1 files changed, 2 insertions, 4 deletions
diff --git a/dot_zsh/plugins/fuzzy b/dot_zsh/plugins/fuzzy
index ed419c1..22ee30d 100644
--- a/dot_zsh/plugins/fuzzy
+++ b/dot_zsh/plugins/fuzzy
@@ -14,14 +14,12 @@ case $fuzzy_command in
export FZF_DEFAULT_COMMAND="$FUZZY_DEFAULT"
export FZF_ALT_C_COMMAND="$FUZZY_ALT_C"
export FZF_CTRL_T_COMMAND="$FUZZY_CTRL_T"
- . /usr/share/fzf/key-bindings.zsh
- . /usr/share/fzf/completion.zsh
+ . /usr/share/fzf/**/*.zsh
;;
sk)
export SKIM_DEFAULT_COMMAND="$FUZZY_DEFAULT"
export SKIM_ALT_C_COMMAND="$FUZZY_ALT_C"
export SKIM_CTRL_T_COMMAND="$FUZZY_CTRL_T"
- . /usr/share/skim/key-bindings.zsh
- . /usr/share/skim/completion.zsh
+ . /usr/share/skim/**/*.zsh
;;
esac