cheat/README.md
2024-10-07 13:56:06 +02:00

12 lines
252 B
Markdown

# Collection of command line cheats
## Shell integration
```shell
function cheat() {
bat -l md -p ~/cheat/cheats/"$1" --color always --theme="Dracula" | tr -d '`'
}
# autocompletion for zsh
compdef '_files -W "/home/panki/cheat/cheats"' cheat
```