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. Zen
  7. angularjs
  8. ask-stack
  9. atom-beautify
  10. atom-bootstrap3
  11. atom-cli-diff
  12. atom-color-highlight
  13. atom-html-preview
  14. atom-ternjs
  15. atom-typescript
  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-control
  32. git-difftool
  33. git-log
  34. git-plus
  35. git-tab-status
  36. go-plus
  37. hex
  38. highlight-cov
  39. highlight-line
  40. highlight-selected
  41. js-refactor
  42. keybinding-cheatsheet
  43. language-jade
  44. language-mumps
  45. language-svg
  46. language-viml
  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. linter
  64. live-archive
  65. man
  66. markdown-format
  67. merge-conflicts
  68. minimap
  69. mocha-test-runner
  70. nbsp-detect
  71. node-debugger
  72. open-in-sourcetree
  73. open-last-project
  74. open-terminal-here
  75. pain-split
  76. pdf-view
  77. pipe
  78. project-colorize
  79. recent-files
  80. refactor
  81. regex-railroad-diagram
  82. resize-panes
  83. revert-buffer
  84. script
  85. sort-lines
  86. stacktrace
  87. svg-preview
  88. task-list
  89. term2
  90. test-jumper
  91. test-status
  92. todo-show
  93. trailing-spaces
  94. turbo-javascript
  95. vim-mode
  96. EOF
  97. )