From 550866878e31ae117e4790e4da93b12a482969bb Mon Sep 17 00:00:00 2001 From: Andrei Stoica Date: Mon, 24 Mar 2025 14:54:55 -0400 Subject: [PATCH] zsh shortcut and fzf --- .zshrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 894bf7a..54ab609 100644 --- a/.zshrc +++ b/.zshrc @@ -62,7 +62,6 @@ ZSH_THEME="blokkzh" # Add wisely, as too many plugins slow down shell startup. plugins=( git - zsh-fzf-history-search ) source $ZSH/oh-my-zsh.sh @@ -105,6 +104,7 @@ autoload -z edit-command-line zle -N edit-command-line bindkey "^v" edit-command-line +bindkey -s "^w" "work^M" # adding cargo to path export PATH=$HOME/.cargo/bin:$PATH @@ -121,3 +121,6 @@ nvm() { [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm nvm "$@" } + +# new fzf command integration +source <(fzf --zsh)