Last active
September 6, 2020 00:21
-
-
Save N4M3Z/0b4f91ac9f04fb8ac5af to your computer and use it in GitHub Desktop.
Install Quick Look Plugins (OS X Caskroom)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
## | |
# Quick Look Plugins | |
# @url http://caskroom.io | |
# @brief Quick Look Plugins installed via Homebrew Cask | |
# | |
# For a comprehensive overview of Quick Look plugins look here: https://github.com/sindresorhus/quick-look-plugins | |
# | |
brew cask install qlcolorcode # Preview source code files with syntax highlighting | |
brew cask install qlstephen # Preview plain text files without a file extension. Example: README, CHANGELOG, etc. | |
brew cask install qlmarkdown # Preview Markdown files | |
brew cask install quicklook-json # Preview JSON files | |
brew cask install qlprettypatch # Preview .patch files | |
brew cask install quicklook-csv # Preview CSV files | |
brew cask install betterzipql # Preview archives | |
brew cask install qlimagesize # Display image size and resolution | |
brew cask install webpquicklook # Preview WebP images | |
brew cask install suspicious-package # Preview the contents of a standard Apple installer package |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment