Skip to content

Instantly share code, notes, and snippets.

@JarLowrey
Last active February 9, 2017 17:30
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save JarLowrey/941821b71a746dc31f418fd03a6c7236 to your computer and use it in GitHub Desktop.
Save JarLowrey/941821b71a746dc31f418fd03a6c7236 to your computer and use it in GitHub Desktop.
Get your Atom editor bootstrapped and ready for best-practices
#!/bin/sh
# Auto-run via:
# sh -c "$(curl -fsSL https://gist.githubusercontent.com/JTronLabs/941821b71a746dc31f418fd03a6c7236/raw/a7ad1b47d1ea72d06d304db3202475930b5362b6/atom_stater_pack.sh)"
echo "Downloading some awesome Atom packages. See the code at https://gist.github.com/JTronLabs/941821b71a746dc31f418fd03a6c7236"
#Editor
apm install linter # https://atom.io/packages/linter - available linters: http://atomlinter.github.io/
apm install highlight-selected # https://atom.io/packages/highlight-selected
apm install atom-beautify # https://atom.io/packages/atom-beautify
apm install fold-lines # https://atom.io/packages/fold-lines
#Themes: Apply by opening settings/preferences (Ctrl+Comma), selecting themes, and changing UI & Syntax themes to Seti
apm install seti-ui #https://atom.io/themes/seti-ui
apm install seti-syntax #https://atom.io/themes/seti-syntax
#Minimap
apm install minimap # https://atom.io/packages/minimap
apm install minimap-cursorline # https://atom.io/packages/minimap-cursorline
#JS
apm install linter-eslint # https://atom.io/packages/linter-eslint
apm install atom-typescript # https://atom.io/packages/atom-typescript
#HTML & design
apm install autoclose-html # https://atom.io/packages/autoclose-html
# apm install markdown-preview # Package is bundled with Atom automatically
apm install atom-html-preview # https://atom.io/packages/atom-html-preview
apm install double-tag # https://atom.io/packages/double-tag
apm install color-picker # https://atom.io/packages/color-picker
#Misc
apm install indent-guide-improved #https://atom.io/packages/indent-guide-improved
apm install package-sync # https://atom.io/packages/package-sync
apm install platformio-ide-terminal # https://atom.io/packages/terminal-plus
#Open Packages (Ctrl+Comma, click Packages), search for Terminal, open settings. Change 'Theme' to Grass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment