install_atom_plugins.sh 935 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #!/bin/bash
  2. # An installable list of the Atom IDE plugins that I use.
  3. # To get "apm" tool: open Atom and click "Atom->Install Shell Commands"
  4. apm install $(cat<<-EOF
  5. Sublime-Style-Column-Selection
  6. atom-beautify
  7. atom-html-preview
  8. atom-ternjs
  9. atom-typescript
  10. atomatigit
  11. autocomplete-emojis
  12. color-picker
  13. copy-as-rtf
  14. coverage
  15. docblockr
  16. editorconfig
  17. file-icons
  18. filesize
  19. git-blame
  20. git-control
  21. git-difftool
  22. git-log
  23. git-plus
  24. go-plus
  25. highlight-selected
  26. language-diff
  27. language-svg
  28. language-viml
  29. language-nginx
  30. language-apache
  31. linter
  32. linter-clang
  33. linter-cpplint
  34. linter-csslint
  35. linter-eslint
  36. linter-javac
  37. linter-js-yaml
  38. linter-less
  39. linter-pycodestyle
  40. linter-perl
  41. linter-pylint
  42. linter-sass-lint
  43. linter-stylelint
  44. linter-shellcheck
  45. linter-tslint
  46. linter-write-good
  47. linter-xmllint
  48. man
  49. merge-conflicts
  50. open-in-sourcetree
  51. open-terminal-here
  52. pdf-view
  53. pigments
  54. pipe
  55. script
  56. sort-lines
  57. svg-preview
  58. term3
  59. trailing-spaces
  60. turbo-javascript
  61. vim-mode-plus
  62. EOF
  63. )