aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dot_fzf.zsh')
-rw-r--r--dot_fzf.zsh14
1 files changed, 14 insertions, 0 deletions
diff --git a/dot_fzf.zsh b/dot_fzf.zsh
new file mode 100644
index 0000000..f8035d9
--- /dev/null
+++ b/dot_fzf.zsh
@@ -0,0 +1,14 @@
1# Setup fzf
2# ---------
3if [[ ! "$PATH" == *${FZF_PATH}/bin* ]]; then
4 export PATH="$PATH:${FZF_PATH}/bin"
5fi
6
7# Auto-completion
8# ---------------
9[[ $- == *i* ]] && source "${FZF_PATH}/shell/completion.zsh" 2> /dev/null
10
11# Key bindings
12# ------------
13source "${FZF_PATH}/shell/key-bindings.zsh"
14
Powered by cgit v1.2.3 (git 2.41.0)