Skip to content

Instantly share code, notes, and snippets.

@elmijo
Last active March 8, 2017 15:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elmijo/f865615bd3ea76ea3a4a to your computer and use it in GitHub Desktop.
Save elmijo/f865615bd3ea76ea3a4a to your computer and use it in GitHub Desktop.
Este es un instalador de atom que se trae un conjunto de packages ideales para desarrolladores web
#! /bin/bash
echo "Download Atom..."
wget --quiet --output-document="atom.deb" https://atom.io/download/deb
echo "Install Atom..."
sudo dpkg -i atom.deb
sudo rm atom.deb
echo "Install Atom's Packages..."
apm install atom-beautify atom-beautify minimap color-picker emmet file-icons project-manager docblockr atom-material-ui atom-material-syntax atom-material-syntax-light markdown-writer
echo "Install Aligner Package..."
apm install aligner aligner-php aligner-javascript aligner-ruby aligner-css aligner-scss aligner-python aligner-stylus
@elmijo
Copy link
Author

elmijo commented Mar 2, 2017

This is the simple way to use

curl -sSo- https://gist.githubusercontent.com/ElMijo/f865615bd3ea76ea3a4a/raw/960c932a42c57bc3022705f7f5af5ac3f6e1a941/ubuntu-install-atom.sh | sudo sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment