install_atom_plugins.sh 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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-emojis
  19. autocomplete-plus
  20. center-screen
  21. change-case
  22. coffee-refactor
  23. color-picker
  24. copy-as-rtf
  25. coverage
  26. docblockr
  27. editorconfig
  28. fancy-new-file
  29. file-icons
  30. filesize
  31. git-blame
  32. git-control
  33. git-difftool
  34. git-log
  35. git-plus
  36. git-tab-status
  37. go-plus
  38. hex
  39. highlight-cov
  40. highlight-line
  41. highlight-selected
  42. js-refactor
  43. keybinding-cheatsheet
  44. language-jade
  45. language-mumps
  46. language-svg
  47. language-viml
  48. linter
  49. linter-clang
  50. linter-coffeelint
  51. linter-cpplint
  52. linter-csslint
  53. linter-javac
  54. linter-js-yaml
  55. linter-jscs
  56. linter-jshint
  57. linter-less
  58. linter-pep8
  59. linter-perl
  60. linter-pylint
  61. linter-scss-lint
  62. linter-shellcheck
  63. linter-tslint
  64. linter-write-good
  65. linter-xmllint
  66. live-archive
  67. man
  68. merge-conflicts
  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. 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. turbo-javascript
  94. vim-mode
  95. EOF
  96. )