Shell configs now source fzf for builtin keybindings.

This commit is contained in:
Derek Taylor
2025-02-23 15:57:13 -06:00
parent 07eadaa263
commit 93c749c37e
3 changed files with 20 additions and 2 deletions

View File

@@ -264,3 +264,10 @@ colorscript random
### SETTING THE STARSHIP PROMPT ### ### SETTING THE STARSHIP PROMPT ###
eval "$(starship init bash)" eval "$(starship init bash)"
### FZF ###
# Enables the following keybindings:
# CTRL-t = fzf select
# CTRL-r = fzf history
# ALT-c = fzf cd
source <(fzf --bash)

View File

@@ -238,5 +238,9 @@ colorscript random
### SETTING THE STARSHIP PROMPT ### ### SETTING THE STARSHIP PROMPT ###
starship init fish | source starship init fish | source
### SETUP ZOXIDE ### ### FZF ###
zoxide init fish | source # Enables the following keybindings:
# CTRL-t = fzf select
# CTRL-r = fzf history
# ALT-c = fzf cd
fzf --fish | source

7
.zshrc
View File

@@ -238,3 +238,10 @@ colorscript random
### SETTING THE STARSHIP PROMPT ### ### SETTING THE STARSHIP PROMPT ###
eval "$(starship init zsh)" eval "$(starship init zsh)"
### FZF ###
# Enables the following keybindings:
# CTRL-t = fzf select
# CTRL-r = fzf history
# ALT-c = fzf cd
source <(fzf --zsh)