From 201ecc4bb342889f1dfbf41a6af7fab402cc254e Mon Sep 17 00:00:00 2001 From: ache Date: Sun, 22 Mar 2026 23:13:25 +0100 Subject: feat: Integrate fzf for improved shell completion This commit adds fzf integration to the fish shell configuration. It initializes and sources the fzf fish script if fzf is installed, enabling enhanced fuzzy finding capabilities. --- config.fish | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'config.fish') diff --git a/config.fish b/config.fish index 0b242a2..195cfd2 100644 --- a/config.fish +++ b/config.fish @@ -136,6 +136,10 @@ if type -q zoxide zoxide init fish | source end +if type -q fzf + fzf --fish | source +end + ## OCaml shit ## opam configuration if [ -e "/home/ache/.opam/opam-init/init.fish" ] -- cgit v1.3-2-g11bf