diff options
| author | ache <ache@ache.one> | 2026-03-22 23:13:25 +0100 |
|---|---|---|
| committer | ache <ache@ache.one> | 2026-03-22 23:13:25 +0100 |
| commit | 201ecc4bb342889f1dfbf41a6af7fab402cc254e (patch) | |
| tree | 4bc016f8a1852603fb913d3a0a23b47e834230ba /config.fish | |
| parent | feat: Create a better edit function (diff) | |
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.
Diffstat (limited to 'config.fish')
| -rw-r--r-- | config.fish | 4 |
1 files changed, 4 insertions, 0 deletions
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" ] |