cheat/README.md

12 lines
252 B
Markdown
Raw Normal View History

2024-10-07 13:51:06 +02:00
# Collection of command line cheats
## Shell integration
2024-10-07 13:56:06 +02:00
```shell
2024-10-07 13:51:06 +02:00
function cheat() {
bat -l md -p ~/cheat/cheats/"$1" --color always --theme="Dracula" | tr -d '`'
}
# autocompletion for zsh
2024-10-07 13:56:06 +02:00
compdef '_files -W "/home/panki/cheat/cheats"' cheat
2024-10-07 13:51:06 +02:00
```