From a038a98cbce3feae20733cef55deaa453fdbca33 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Sun, 23 Feb 2025 16:32:54 -0600 Subject: [PATCH] Adding FZF defaults to shell configs. --- .bashrc | 3 +++ .config/fish/config.fish | 3 +++ .zshrc | 3 +++ 3 files changed, 9 insertions(+) diff --git a/.bashrc b/.bashrc index 659f092..6ae189e 100644 --- a/.bashrc +++ b/.bashrc @@ -12,6 +12,9 @@ export HISTCONTROL=ignoredups:erasedups # no duplicate entries export EDITOR="emacsclient -t -a ''" # $EDITOR use Emacs in terminal 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" + ### SET MANPAGER ### Uncomment only one of these! diff --git a/.config/fish/config.fish b/.config/fish/config.fish index 410c5b4..a618e96 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -18,6 +18,9 @@ set TERM "xterm-256color" # Sets the terminal type set EDITOR "emacsclient -t -a ''" # $EDITOR use Emacs in terminal 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 MANPAGER ### Uncomment only one of these! diff --git a/.zshrc b/.zshrc index 52baead..22c713d 100644 --- a/.zshrc +++ b/.zshrc @@ -11,6 +11,9 @@ export HISTORY_IGNORE="(ls|cd|pwd|exit|sudo reboot|history|cd -|cd ..)" export EDITOR="emacsclient -t -a ''" # $EDITOR use Emacs in terminal 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" + ### SET MANPAGER ### Uncomment only one of these!