Skip to content

Instantly share code, notes, and snippets.

@tdkn
Last active January 18, 2016 16:41
Show Gist options
  • Save tdkn/b0b842498e20e80975f3 to your computer and use it in GitHub Desktop.
Save tdkn/b0b842498e20e80975f3 to your computer and use it in GitHub Desktop.
Install Atom Packages
#!/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