Skip to content

Commit

Permalink
fzf: Add fzf
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielsoldani committed Aug 4, 2024
1 parent db35ff5 commit 884231d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ brew "bash"
brew "bash-completion@2"
brew "direnv"
brew "ffmpeg"
brew "fzf"
brew "gh"
brew "git"
brew "htop"
Expand Down
4 changes: 4 additions & 0 deletions fzf/.config/bash/rc.d/40-fzf.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# shellcheck shell=bash

# Set up fzf key bindings and fuzzy completion
eval "$(fzf --bash)"
4 changes: 4 additions & 0 deletions fzf/.config/zsh/rc.d/40-fzf.zsh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# shellcheck shell=sh

# Set up fzf key bindings and fuzzy completion
source <(fzf --zsh)

Check warning on line 4 in fzf/.config/zsh/rc.d/40-fzf.zsh

View workflow job for this annotation

GitHub Actions / Lint

In POSIX sh, 'source' in place of '.' is undefined.

Check warning on line 4 in fzf/.config/zsh/rc.d/40-fzf.zsh

View workflow job for this annotation

GitHub Actions / Lint

In POSIX sh, process substitution is undefined.

Check warning on line 4 in fzf/.config/zsh/rc.d/40-fzf.zsh

View workflow job for this annotation

GitHub Actions / Lint

In POSIX sh, 'source' in place of '.' is undefined.

Check warning on line 4 in fzf/.config/zsh/rc.d/40-fzf.zsh

View workflow job for this annotation

GitHub Actions / Lint

In POSIX sh, process substitution is undefined.

0 comments on commit 884231d

Please sign in to comment.