From e837ee39c33d3aba611ef9cfe4c946e904fdb10e Mon Sep 17 00:00:00 2001 From: Loic Nageleisen Date: Thu, 19 Oct 2017 17:22:00 +0200 Subject: [PATCH] Add support for fzf --- shell/fzf | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 shell/fzf diff --git a/shell/fzf b/shell/fzf new file mode 100755 index 0000000..ede0047 --- /dev/null +++ b/shell/fzf @@ -0,0 +1,3 @@ +export FZF_DEFAULT_COMMAND='rg --files --glob "!.git/*"' +export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND" +bind -x '"\C-p": vim $(fzf);'