From 975a46396a736f3578274fd6dc9710a79c8575e2 Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Thu, 7 Nov 2024 15:58:43 -0800 Subject: [PATCH] don't reverse zoxide for fzf --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 904a594..7636827 100644 --- a/.zshrc +++ b/.zshrc @@ -179,7 +179,7 @@ if (( $+commands[zoxide] )); then local dir=$( zoxide query --list --score | fzf --height 40% --layout reverse --info inline \ - --nth 2.. --tac --no-sort --query "$*" \ + --nth 2.. --no-sort --query "$*" \ --bind 'enter:become:echo {2..}' ) && cd "$dir" }