Created
January 25, 2018 20:57
-
-
Save jonathanhle/d9b8446599137dac0838b00c26791c76 to your computer and use it in GitHub Desktop.
script to install atom plugins from a list
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
#!/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