install_atom_plugins.sh 1.2 KB

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