install_atom_plugins.sh 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. fancy-new-file
  28. file-icons
  29. filesize
  30. git-blame
  31. git-difftool
  32. git-log
  33. git-plus
  34. git-tab-status
  35. go-plus
  36. hex
  37. highlight-cov
  38. highlight-line
  39. highlight-selected
  40. js-refactor
  41. keybinding-cheatsheet
  42. language-jade
  43. language-mumps
  44. language-svg
  45. language-viml
  46. linter
  47. linter-clang
  48. linter-coffeelint
  49. linter-cpplint
  50. linter-csslint
  51. linter-javac
  52. linter-js-yaml
  53. linter-jscs
  54. linter-jshint
  55. linter-pep8
  56. linter-perl
  57. linter-pylint
  58. linter-scss-lint
  59. linter-shellcheck
  60. linter-tslint
  61. linter-write-good
  62. linter-xmllint
  63. live-archive
  64. man
  65. markdown-format
  66. merge-conflicts
  67. minimap
  68. mocha-test-runner
  69. nbsp-detect
  70. node-debugger
  71. open-in-sourcetree
  72. open-last-project
  73. open-terminal-here
  74. pain-split
  75. pdf-view
  76. pipe
  77. project-colorize
  78. recent-files
  79. refactor
  80. regex-railroad-diagram
  81. resize-panes
  82. revert-buffer
  83. script
  84. sort-lines
  85. stacktrace
  86. svg-preview
  87. task-list
  88. term2
  89. test-jumper
  90. test-status
  91. todo-show
  92. trailing-spaces
  93. tualo-git-context
  94. turbo-javascript
  95. vim-mode
  96. EOF
  97. )