install_atom_plugins.sh 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. atom-beautify
  7. atom-html-preview
  8. atom-import-js
  9. atom-ternjs
  10. atom-typescript
  11. autocomplete-emojis
  12. autocomplete-json
  13. autocomplete-modules
  14. autocomplete-python
  15. busy-signal
  16. color-picker
  17. copy-as-rtf
  18. declarations
  19. docblockr
  20. editorconfig
  21. file-icons
  22. filesize
  23. git-blame
  24. git-difftool
  25. go-plus
  26. highlight-selected
  27. hyperclick
  28. intentions
  29. language-apache
  30. language-diff
  31. language-nginx
  32. language-plantuml
  33. language-protobuf
  34. language-svg
  35. language-viml
  36. linter
  37. linter-clang
  38. linter-cpplint
  39. linter-csslint
  40. linter-eslint
  41. linter-javac
  42. linter-js-yaml
  43. linter-less
  44. linter-perl
  45. linter-pycodestyle
  46. linter-sass-lint
  47. linter-shellcheck
  48. linter-stylelint
  49. linter-tslint
  50. linter-write-good
  51. linter-xmllint
  52. man
  53. merge-conflicts
  54. open-in-sourcetree
  55. open-terminal-here
  56. pdf-view
  57. pigments
  58. pipe
  59. plantuml-viewer
  60. script
  61. sort-lines
  62. svg-preview
  63. term3
  64. trailing-spaces
  65. turbo-javascript
  66. vim-mode-plus
  67. EOF
  68. )