From 356f1af84f4ddb6c2ee0c07c4d9a273f7c90f349 Mon Sep 17 00:00:00 2001 From: earnest ma Date: Sun, 20 Feb 2022 18:15:13 -0500 Subject: [PATCH] zshrc: Bind fghq to Ctrl-f --- zsh/.zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index f576593..73af20d 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -25,6 +25,8 @@ bindkey -s '^L' '^Uclear^M' # clear using alias autoload edit-command-line; zle -N edit-command-line bindkey '^k' edit-command-line +bindkey -s '^f' '^Ufghq^M' # fghq from alias + # History HISTORY_IGNORE="(ls|cd|pwd|exit|sudo reboot|history|cd -|cd ..)" HISTFILE="$HOME/.zsh_history"