install_atom_plugins.sh 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. atomatigit
  16. atomic-rest
  17. autocomplete-plus
  18. center-screen
  19. change-case
  20. coffee-refactor
  21. color-picker
  22. copy-as-rtf
  23. coverage
  24. docblockr
  25. editorconfig
  26. fancy-new-file
  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. keybinding-cheatsheet
  41. language-jade
  42. language-mumps
  43. language-svg
  44. language-viml
  45. linter
  46. linter-clang
  47. linter-coffeelint
  48. linter-cpplint
  49. linter-csslint
  50. linter-javac
  51. linter-js-yaml
  52. linter-jscs
  53. linter-jshint
  54. linter-pep8
  55. linter-perl
  56. linter-pylint
  57. linter-scss-lint
  58. linter-shellcheck
  59. linter-tslint
  60. linter-write-good
  61. linter-xmllint
  62. live-archive
  63. man
  64. markdown-format
  65. merge-conflicts
  66. minimap
  67. mocha-test-runner
  68. nbsp-detect
  69. node-debugger
  70. open-in-sourcetree
  71. open-last-project
  72. open-terminal-here
  73. pain-split
  74. pdf-view
  75. pipe
  76. project-colorize
  77. recent-files
  78. refactor
  79. regex-railroad-diagram
  80. resize-panes
  81. revert-buffer
  82. script
  83. sort-lines
  84. stacktrace
  85. svg-preview
  86. task-list
  87. term2
  88. test-jumper
  89. test-status
  90. todo-show
  91. trailing-spaces
  92. turbo-javascript
  93. vim-mode
  94. EOF
  95. )