Last active
January 18, 2016 16:41
-
-
Save tdkn/b0b842498e20e80975f3 to your computer and use it in GitHub Desktop.
Install Atom Packages
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 | |
PACKAGES=( | |
minimap | |
minimap-autohide | |
minimap-git-diff | |
file-icons | |
emmet | |
vim-mode | |
color-picker | |
merge-conflicts | |
autocomplete-paths | |
linter | |
linter-htmlhint | |
linter-stylelint | |
linter-eslint | |
editorconfig | |
) | |
for package in ${PACKAGES[@]}; do | |
apm install $package | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment