Skip to content

Instantly share code, notes, and snippets.

@shaunfink
Last active November 12, 2018 15:42
Show Gist options
  • Save shaunfink/6948501918af7983a1baede05dc8da29 to your computer and use it in GitHub Desktop.
Save shaunfink/6948501918af7983a1baede05dc8da29 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Script to install all the useful Atom plugins and themes that I like and use.
# Atom Plugins
ATOM_PLUGINS=(\
ask-stack \
concourse-vis \
atom-beautify \
git-time-machine \
git-plus \
git-blame \
linter \
linter-python \
linter-puppet \
linter-ruby \
linter-terraform-syntax \
file-icons \
minimap \
expose \
open-recent \
project-manager \
todo-show \
highlight-selected \
minimap-highlight-selected \
auto-detect-indentation \
emmet \
merge-conflicts \
activate-power-mode \
docblockr \
language-puppet \
language-terraform \
atom-shortcuts \
vagrant \
remote-sync \
tail \
language-log \
sync-settings \
clipboard-plus \
auto-update-packages \
pigments \
markdown-writer \
atom-certificate-view \
script \
autocomplete-python-jedi \
predawn-syntax \
predawn-ui \
vim-mode-plus \
minimap-cursorline \
double-tag \
autoclose-html \
color-picker \
sort-lines \
last-cursor-position \
code-peek \
package-sync \
seti-ui \
seti-icons \
linter-write-good \
kite \
compare-files \
split-diff \
)
# Work some plugin magic
for plugin in ${ATOM_PLUGINS[@]}; do
apm install ${plugin}
done
echo "Done!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment