install_atom_plugins.sh 934 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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-ternjs
  9. atom-typescript
  10. atomatigit
  11. autocomplete-emojis
  12. color-picker
  13. copy-as-rtf
  14. coverage
  15. docblockr
  16. editorconfig
  17. file-icons
  18. filesize
  19. git-blame
  20. git-control
  21. git-difftool
  22. git-log
  23. git-plus
  24. go-plus
  25. highlight-selected
  26. language-diff
  27. language-svg
  28. language-viml
  29. linter
  30. linter-clang
  31. linter-coffeelint
  32. linter-cpplint
  33. linter-csslint
  34. linter-eslint
  35. linter-javac
  36. linter-js-yaml
  37. linter-less
  38. linter-pep8
  39. linter-perl
  40. linter-pylint
  41. linter-sass-lint
  42. linter-shellcheck
  43. linter-tslint
  44. linter-write-good
  45. linter-xmllint
  46. man
  47. merge-conflicts
  48. open-in-sourcetree
  49. open-terminal-here
  50. pdf-view
  51. pigments
  52. pipe
  53. quick-highlight
  54. revert-buffer
  55. script
  56. sort-lines
  57. svg-preview
  58. term3
  59. trailing-spaces
  60. turbo-javascript
  61. vim-mode
  62. EOF
  63. )
  64. gimme node