blob: 86b5c6b7ca2b1f660ba2674ba84c72c41069af72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
post_install() {
printf "%b\n" "$fzfin"
}
read -d '' fzfin <<'EOF'
fzf
===
Optional fzf keybindings for bash have been placed here:
/etc/profile.d/fzf.bash
To utilize, add the following to your bash config:
. /etc/profile.d/fzf.bash
Or for zsh, add the following to your config:
. /etc/profile.d/fzf.zsh
For fish, keybindings are in
/usr/share/fish/functions/fzf.fish
Fish will source this by default.
EOF
|