install_atom_plugins.sh 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. center-screen
  20. change-case
  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-control
  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. 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-eslint
  51. linter-javac
  52. linter-js-yaml
  53. linter-jscs
  54. linter-jshint
  55. linter-less
  56. linter-pep8
  57. linter-perl
  58. linter-pylint
  59. linter-scss-lint
  60. linter-shellcheck
  61. linter-tslint
  62. linter-write-good
  63. linter-xmllint
  64. live-archive
  65. man
  66. merge-conflicts
  67. mocha-test-runner
  68. node-debugger
  69. open-in-sourcetree
  70. open-terminal-here
  71. pain-split
  72. pdf-view
  73. pipe
  74. regex-railroad-diagram
  75. revert-buffer
  76. script
  77. sort-lines
  78. stacktrace
  79. svg-preview
  80. task-list
  81. term2
  82. test-jumper
  83. test-status
  84. todo-show
  85. trailing-spaces
  86. turbo-javascript
  87. vim-mode
  88. EOF
  89. )