aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclarkzjw <[email protected]>2022-11-17 10:56:25 -0800
committerclarkzjw <[email protected]>2022-11-17 10:56:25 -0800
commitd2d735742ca61b211c9b48a2209d36395daebcf4 (patch)
treebda27729a1bbac3ab354a1f10d4885899cdbf967 /dot_fzf.zsh
parenta6d2e5e6fb9adc84c32e86630b4846b1765c7d77 (diff)
downloaddotfiles-d2d735742ca61b211c9b48a2209d36395daebcf4.tar.gz
+ add existing config
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)