From 93c749c37ef6be3b844b8d8927d267213ae6d870 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Sun, 23 Feb 2025 15:57:13 -0600 Subject: [PATCH] Shell configs now source fzf for builtin keybindings. --- .bashrc | 7 +++++++ .config/fish/config.fish | 8 ++++++-- .zshrc | 7 +++++++ 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/.bashrc b/.bashrc index a0c9e03..12612b5 100644 --- a/.bashrc +++ b/.bashrc @@ -264,3 +264,10 @@ colorscript random ### SETTING THE STARSHIP PROMPT ### eval "$(starship init bash)" + +### FZF ### +# Enables the following keybindings: +# CTRL-t = fzf select +# CTRL-r = fzf history +# ALT-c = fzf cd +source <(fzf --bash) diff --git a/.config/fish/config.fish b/.config/fish/config.fish index ea7807b..410c5b4 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -238,5 +238,9 @@ colorscript random ### SETTING THE STARSHIP PROMPT ### starship init fish | source -### SETUP ZOXIDE ### -zoxide init fish | source +### FZF ### +# Enables the following keybindings: +# CTRL-t = fzf select +# CTRL-r = fzf history +# ALT-c = fzf cd +fzf --fish | source diff --git a/.zshrc b/.zshrc index 36d1969..52baead 100644 --- a/.zshrc +++ b/.zshrc @@ -238,3 +238,10 @@ colorscript random ### SETTING THE STARSHIP PROMPT ### eval "$(starship init zsh)" + +### FZF ### +# Enables the following keybindings: +# CTRL-t = fzf select +# CTRL-r = fzf history +# ALT-c = fzf cd +source <(fzf --zsh)