til/Applications/Essential/fzf.md

19 lines
517 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
2020-05-22 06:33:45 +00:00
# Use fd instead of find
2020-05-22 07:12:01 +00:00
export FZF_DEFAULT_COMMAND='fd --hidden --exclude .git'
2020-05-06 18:38:17 +00:00
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
2020-07-07 19:07:34 +00:00
# Colorscheme
export FZF_DEFAULT_OPTS='--color dark'
export FZF_DEFAULT_OPTS='--color light'
2020-05-06 18:38:17 +00:00
```
2020-05-19 18:51:55 +00:00
| Shorcut | Explain |
| -------- | ------------------------------------ |
2020-05-22 06:33:45 +00:00
| `CTRL-T` | search through files and directories |
| `CTRL-R` | search though command-line history |