dotfiles/.local/bin/scripts/zfz
2021-11-10 17:42:28 +01:00

7 lines
271 B
Bash
Executable file

#!/bin/sh
# fzf for zoxide
# returns the selected path stripped of its score
fzf -0 -1 -n2.. --tiebreak=index \
--preview-window=20% --preview="ls -a --color --human-readable --group-directories-first --file-type {2..}" \
--height=80% --reverse |
sed 's|.* /|/|'