Skip to content

Instantly share code, notes, and snippets.

@jonathanhle
Created January 25, 2018 20:57
Show Gist options
  • Save jonathanhle/d9b8446599137dac0838b00c26791c76 to your computer and use it in GitHub Desktop.
Save jonathanhle/d9b8446599137dac0838b00c26791c76 to your computer and use it in GitHub Desktop.
script to install atom plugins from a list
#!/usr/bin/env bash
atom_plugin=$(cat <<EOF
tablr
sort-lines
project-viewer
pretty-json
pdf-view
language-ansible
intentions
highlight-line
eval-javascript
command-toolbar
colorful-json
branch-status
block-selection-mode
atom-runner
python-indent
open-in-browsers
menu-manager
markdown-toolbar
markdown-pdf
linter-json-lint
language-groovy
copy-filename
command-executor
busy-signal
atom-bootstrap3
Sublime-Style-Column-Selection
teletype
highlight-selected
auto-reveal-in-sidebar
split-diff
linter
tree-view-git-branch
tabs-to-spaces
linter-ui-default
git-checkout
auto-indent
autocomplete-python
atom-shell-commands
selection-mode
EOF
)
for i in `echo $atom_plugin`
do
echo $i
apm install $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment