install_atom_plugins.sh 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. Tern
  7. Zen
  8. angularjs
  9. ask-stack
  10. atom-beautify
  11. atom-bootstrap3
  12. atom-cli-diff
  13. atom-color-highlight
  14. atom-html-preview
  15. atom-lint
  16. atomatigit
  17. atomic-rest
  18. center-screen
  19. change-case
  20. coffee-refactor
  21. color-picker
  22. copy-as-rtf
  23. coverage
  24. docblockr
  25. editorconfig
  26. file-icons
  27. filesize
  28. git-blame
  29. git-difftool
  30. git-log
  31. git-plus
  32. git-tab-status
  33. go-plus
  34. hex
  35. highlight-cov
  36. highlight-line
  37. highlight-selected
  38. js-refactor
  39. language-svg
  40. linter
  41. linter-clang
  42. linter-coffeelint
  43. linter-cpplint
  44. linter-csslint
  45. linter-javac
  46. linter-js-yaml
  47. linter-jshint
  48. linter-pep8
  49. linter-perl
  50. linter-pylint
  51. linter-scss-lint
  52. linter-shellcheck
  53. linter-write-good
  54. linter-xmllint
  55. live-archive
  56. markdown-format
  57. merge-conflicts
  58. mocha-test-runner
  59. nbsp-detect
  60. node-debugger
  61. open-in-sourcetree
  62. open-last-project
  63. open-terminal-here
  64. pain-split
  65. pdf-view
  66. pipe
  67. project-colorize
  68. recent-files
  69. refactor
  70. regex-railroad-diagram
  71. revert-buffer
  72. script
  73. sort-lines
  74. stacktrace
  75. svg-preview
  76. task-list
  77. term2
  78. test-jumper
  79. test-status
  80. todo-show
  81. trailing-spaces
  82. tualo-git-context
  83. turbo-javascript
  84. EOF
  85. )