Compare commits

..

No commits in common. "f94fc468aa3c3bed51611d083d01e5adbecf75dd" and "4b7c6c1f5eb7cbd7254a8f69050b17c9d4723837" have entirely different histories.

2 changed files with 1 additions and 3 deletions

View file

@ -14,12 +14,10 @@ in
exclude = mkOption {
type = with types; listOf str;
default = [
"bat"
"delta"
"direnv reload"
"fg"
"git (?!push|pull|fetch)"
"home-manager (?!switch|build|news)"
"htop"
"less"
"man"

View file

@ -14,7 +14,7 @@ find_program() {
local CANDIDATE
CANDIDATE="$(nix-locate --minimal --at-root --whole-name "/bin/$1")"
if [ "$(printf '%s\n' "$CANDIDATE" | wc -l)" -gt 1 ]; then
CANDIDATE="$(printf '%s' "$CANDIDATE" | "${COMMA_PICKER:-fzf-tmux}")"
CANDIDATE="$(printf '%s' "$CANDIDATE" | fzf-tmux)"
fi
printf '%s' "$CANDIDATE"
}