til/Applications/fzf.md

14 lines
347 B
Markdown
Raw Normal View History

2020-05-06 18:38:17 +00:00
# [fzf](https://wiki.archlinux.org/index.php/Fzf)
Add to `~/.bashrc`:
```bash
[[ -f /usr/share/fzf/key-bindings.bash ]] && \
source /usr/share/fzf/key-bindings.bash
[[ -f /usr/share/fzf/completion.bash ]] && \
source /usr/share/fzf/completion.bash
export FZF_DEFAULT_COMMAND='fd -H'
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
```