-
-
Save talkahe/25d1f34d2aec3cf662b29309ec08635d to your computer and use it in GitHub Desktop.
Basic Atom Packages
This file contains 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 | |
#Download, 'cd' into the Downloads/ directory, run 'sh atom_packages.sh' in a terminal | |
#Editor | |
apm install linter # https://atom.io/packages/linter - available linters: http://atomlinter.github.io/ | |
apm install highlight-selected # https://atom.io/packages/highlight-selected | |
apm install atom-beautify # https://atom.io/packages/atom-beautify | |
apm install fold-lines # https://atom.io/packages/fold-lines | |
#Minimap | |
apm install minimap # https://atom.io/packages/minimap | |
apm install minimap-cursorline # https://atom.io/packages/minimap-cursorline | |
#JS | |
apm install linter-jshint # https://atom.io/packages/fold-lines | |
apm install atom-typescript # https://atom.io/packages/atom-typescript | |
#HTML & design | |
apm install autoclose-html # https://atom.io/packages/autoclose-html | |
# apm install markdown-preview # Package is bundled with Atom automatically | |
apm install atom-html-preview # https://atom.io/packages/atom-html-preview | |
apm install double-tag # https://atom.io/packages/double-tag | |
apm install color-picker # https://atom.io/packages/color-picker | |
#Misc | |
apm install package-sync # https://atom.io/packages/package-sync | |
apm install platformio-ide-terminal # https://atom.io/packages/platformio-ide-terminal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment