install_atom_plugins.sh 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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-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. linter
  65. live-archive
  66. man
  67. markdown-format
  68. merge-conflicts
  69. minimap
  70. mocha-test-runner
  71. nbsp-detect
  72. node-debugger
  73. open-in-sourcetree
  74. open-last-project
  75. open-terminal-here
  76. pain-split
  77. pdf-view
  78. pipe
  79. project-colorize
  80. recent-files
  81. refactor
  82. regex-railroad-diagram
  83. resize-panes
  84. revert-buffer
  85. script
  86. sort-lines
  87. stacktrace
  88. svg-preview
  89. task-list
  90. term2
  91. test-jumper
  92. test-status
  93. todo-show
  94. trailing-spaces
  95. turbo-javascript
  96. vim-mode
  97. EOF
  98. )