From 00759e8963eac1aac4a5a39ce6dbead8dabf1fe2 Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Tue, 29 May 2018 21:04:18 +0200 Subject: [PATCH] [shell] add fzf --- install.conf.json | 1 + shell/fzf.sh | 4 ++++ 2 files changed, 5 insertions(+) create mode 100755 shell/fzf.sh diff --git a/install.conf.json b/install.conf.json index 760df12..aa5725b 100644 --- a/install.conf.json +++ b/install.conf.json @@ -49,6 +49,7 @@ "~/.profile.d/40-mysqlpw.sh": "shell/mysqlpw.sh", "~/.profile.d/90-keychain.sh": "shell/keychain.sh", "~/.profile.d/80-command-not-found.sh": "shell/command-not-found.sh", + "~/.profile.d/81-fzf.sh": "shell/fzf.sh", "~/.config/redshift.conf": "redshift/redshift.conf", "~/.config/redshift/hooks/hook.sh": "redshift/hook.sh", "~/.config/pacaur/config": "pacaur/config", diff --git a/shell/fzf.sh b/shell/fzf.sh new file mode 100755 index 0000000..cbc0ba8 --- /dev/null +++ b/shell/fzf.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +[ -r /usr/share/fzf/key-bindings.bash ] && . /usr/share/fzf/key-bindings.bash +[ -r /usr/share/fzf/completion.bash ] && . /usr/share/fzf/completion.bash