summaryrefslogtreecommitdiff
path: root/dot_zsh/plugins/fuzzy
diff options
context:
space:
mode:
authorChloe Kudryavtsev <toast@toast.cafe>2021-05-06 12:13:43 -0400
committerChloe Kudryavtsev <toast@toast.cafe>2021-05-06 12:13:43 -0400
commit4be2fb4e53dfd1493dc0e4603f2dbf005bea9a09 (patch)
treefd655147927f0f5d5a75a7dce813abddbc1ae10f /dot_zsh/plugins/fuzzy
parentupdate tmux conf (diff)
remove zsh
Diffstat (limited to 'dot_zsh/plugins/fuzzy')
-rw-r--r--dot_zsh/plugins/fuzzy25
1 files changed, 0 insertions, 25 deletions
diff --git a/dot_zsh/plugins/fuzzy b/dot_zsh/plugins/fuzzy
deleted file mode 100644
index 22ee30d..0000000
--- a/dot_zsh/plugins/fuzzy
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/zsh
-(( $+commands[fd] )) || return # find(1) sucks, not worth without fd
-
-# if it's not set yet, set it
-[[ -z $fuzzy_command ]] && (( $+commands[fzf] )) && fuzzy_command=fzf
-[[ -z $fuzzy_command ]] && (( $+commands[sk] )) && fuzzy_command=sk
-
-local FUZZY_DEFAULT='fd -t f'
-local FUZZY_ALT_C='fd -t d'
-local FUZZY_CTRL_T="$FUZZY_DEFAULT"
-
-case $fuzzy_command in
- fzf)
- 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/**/*.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/**/*.zsh
- ;;
-esac