From d05059073fd6b1eb6521ae955f1787edf387012f Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Fri, 28 Feb 2025 17:37:02 -0600 Subject: [PATCH] Updating FZF DEFAULT OPTS in shell configs to include 'exact'. --- .bashrc | 2 +- .config/fish/config.fish | 2 +- .zshrc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bashrc b/.bashrc index 6ae189e..5d95948 100644 --- a/.bashrc +++ b/.bashrc @@ -13,7 +13,7 @@ export EDITOR="emacsclient -t -a ''" # $EDITOR use Emacs in termina export VISUAL="emacsclient -c -a emacs" # $VISUAL use Emacs in GUI mode ### SET FZF DEFAULTS -export FZF_DEFAULT_OPTS="--layout=reverse --border=bold --border=rounded --margin=3% --color=dark" +export FZF_DEFAULT_OPTS="--layout=reverse --exact --border=bold --border=rounded --margin=3% --color=dark" ### SET MANPAGER ### Uncomment only one of these! diff --git a/.config/fish/config.fish b/.config/fish/config.fish index f781454..3961069 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -19,7 +19,7 @@ set EDITOR "emacsclient -t -a ''" # $EDITOR use Emacs in termina set VISUAL "emacsclient -c -a emacs" # $VISUAL use Emacs in GUI mode ### SET FZF DEFAULTS -set FZF_DEFAULT_OPTS "--layout=reverse --border=bold --border=rounded --margin=3% --color=dark" +set FZF_DEFAULT_OPTS "--layout=reverse --exact --border=bold --border=rounded --margin=3% --color=dark" ### SET MANPAGER ### Uncomment only one of these! diff --git a/.zshrc b/.zshrc index 22c713d..6ac013a 100644 --- a/.zshrc +++ b/.zshrc @@ -12,7 +12,7 @@ export EDITOR="emacsclient -t -a ''" # $EDITOR use Emacs in termina export VISUAL="emacsclient -c -a emacs" # $VISUAL use Emacs in GUI mode ### SET FZF DEFAULTS -export FZF_DEFAULT_OPTS="--layout=reverse --border=bold --border=rounded --margin=3% --color=dark" +export FZF_DEFAULT_OPTS="--layout=reverse --exact --border=bold --border=rounded --margin=3% --color=dark" ### SET MANPAGER ### Uncomment only one of these!