install_atom_plugins.sh 875 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. linter
  30. linter-clang
  31. linter-cpplint
  32. linter-csslint
  33. linter-eslint
  34. linter-javac
  35. linter-js-yaml
  36. linter-less
  37. linter-pep8
  38. linter-perl
  39. linter-pylint
  40. linter-sass-lint
  41. linter-shellcheck
  42. linter-tslint
  43. linter-write-good
  44. linter-xmllint
  45. man
  46. merge-conflicts
  47. open-in-sourcetree
  48. open-terminal-here
  49. pdf-view
  50. pigments
  51. pipe
  52. script
  53. sort-lines
  54. svg-preview
  55. term3
  56. trailing-spaces
  57. turbo-javascript
  58. vim-mode
  59. EOF
  60. )