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)