Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. clear
  4.  
  5. echo "Removing old atom configurations..."
  6. rm -rf ~/.atom
  7.  
  8. echo "Installing the packages..."
  9. apm install atom-bootstrap3
  10. apm install atom-html-preview
  11. apm install atom-typescript
  12. apm install auto-detect-indentation
  13. apm install autocomplete-modules
  14. apm install color-picker
  15. apm install docblockr
  16. apm install emmet
  17. apm install file-icons
  18. apm install gist-it
  19. apm install git-plus
  20. apm install highlight-line
  21. apm install highlight-selected
  22. apm install less-than-slash
  23. apm install linter
  24. apm install linter-htmlhint
  25. apm install minimap
  26. apm install minimap-cursorline
  27. apm install minimap-highlight-selected
  28. apm install minimap-linter
  29. apm install minimap-pigments
  30. apm install open-recent
  31. apm install opened-files
  32. apm install pigments
  33. apm install platformio-ide-terminal
  34. apm install simple-drag-drop-text
  35. apm install sort-lines
  36. apm install sync-settings
  37. apm install tree-view-autoresize
  38. apm install tree-view-git-status
  39.  
  40. echo "Installing atom themes ..."
  41. apm install atom-material-syntax
  42. apm install atom-material-ui
  43. apm install genesis-syntax
  44. apm install genesis-ui
  45. apm install monokai
  46. apm install monokai-seti
  47. apm install native-ui
  48. apm install seti-syntax
  49. apm install seti-ui
  50. apm install vivid
  51.  
  52. echo "All Done!!!!"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement