From f517d4ee3198682ff65c7e73f893c96cbb1ace5d Mon Sep 17 00:00:00 2001 From: Vladan Popovic Date: Tue, 1 Oct 2024 21:07:01 +0200 Subject: [PATCH] bash: fzf popup style --- dotfiles/.bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/.bashrc b/dotfiles/.bashrc index 11c4f1a..e086f5d 100644 --- a/dotfiles/.bashrc +++ b/dotfiles/.bashrc @@ -31,7 +31,7 @@ export PS1="${Yellow}\d \A ${Off}${Green}\u@\h: ${Off}\w ${Red}\$(parse_branch g # Use fzf if installed. hash fzf 2>/dev/null && eval "$(fzf --bash)" -export FZF_COMPLETION_OPTS='--border --info=inline' +export FZF_DEFAULT_OPTS='--border=horizontal --info=inline --no-reverse --height=50%' # Change to saved working dir. [[ -f "${HOME}/.cwd" ]] && cd "$(< ${HOME}/.cwd)"