Two oh-my-zsh plugins bringing comfort: extract and colored-man-pages
- 90 words
- 1 min
A short article, a reminder in fact.
Yesterday I read an article about shell customizing and I discovered two plugins: colored-man-pages and extract. The first one is self explaining :
The second one allows me not to plug my brain when I want to extract a compressed archive either it was compressed with gzip, bzip2, zip...
To use them, as usual in your zshrc file:
# ...
plugins=(... extract colored-man-pages ...)
# ...