Skip to content

Instantly share code, notes, and snippets.

@mindvox
Last active October 12, 2016 08:34
Show Gist options
  • Save mindvox/e5fabc9a533c96bd2385714493a7e530 to your computer and use it in GitHub Desktop.
Save mindvox/e5fabc9a533c96bd2385714493a7e530 to your computer and use it in GitHub Desktop.
Atom packages and setup

Intro

I love Atom, it's a great editor.. to make it even greater run the commands below to introduce some extra power. Note that some of these packages may cause Atom to display an error upon launch. This is because the packages below depend on other dependancies, which cannot be installed by Atom (I'm working on that). Simply install the package Atom is asking for to remove the issue.

Enjoy and happy coding 😄

@karlbateman

#!/usr/env sh
##
# Install autocomplete for Atom
#
echo 'Installing Atom Autocomplete' ; echo ;
apm install autocomplete-bibtex atom-ternjs autocomplete-python autocomplete-xml
echo 'Complete!'
#!/usr/env sh
##
# Installs linters for Atom
#
echo 'Installing Atom Linters' ; echo ;
apm install linter linter-shellcheck linter-csslint linter-coffeelint linter-erb linter-handlebars linter-htmlhint linter-jsonlint linter-eslint linter-perlcritic linter-flake8 linter-scss-lint linter-xmllint linter-js-yaml linter-less
echo 'Complete!'
#!/usr/env sh
##
# Install packages for Atom
#
echo 'Installing Atom Packages' ; echo ;
apm install minimap minimap-linter pigments minimap-pigments atom-beautify emmet file-icons language-babel color-picker highlight-selected git-plus activate-power-mode docker-language preview
echo 'Complete!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment