terminal
Terminal tools = tmux + zsh + fzf + ripgrep.
Atomic Skills
| Skill |
Domain |
| tmux |
Multiplexer |
| zsh |
Shell |
| fzf |
Fuzzy finder |
| ripgrep |
Search |
Tmux
tmux new -s work
# C-b d (detach)
tmux attach -t work
# C-b % (split vertical)
# C-b " (split horizontal)
Fzf
# File picker
vim $(fzf)
# History
C-r # fzf history search
# Directory
cd $(find . -type d | fzf)
Ripgrep
rg "pattern"
rg -t py "import"
rg -l "TODO"
rg --hidden "secret"
Integration
# fzf + rg
rg --files | fzf | xargs vim