Skip to content

Instantly share code, notes, and snippets.

@shivabhusal
Last active July 11, 2017 06:36
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save shivabhusal/4ccd314b98528cae6d5e9e099248d72a to your computer and use it in GitHub Desktop.
Save shivabhusal/4ccd314b98528cae6d5e9e099248d72a to your computer and use it in GitHub Desktop.
shell script to install most commonly used tools for Ruby/Rails development in Atom Text Editor
#! /usr/bin/bash
apm install markdown-preview
apm install language-ruby
apm install autocomplete-ruby
# Lets you maintain long history of items you copied in past using `CTRL + SHIFT + v`
apm install clipboard-history
apm install goto-definition
apm install hyperclick # aids `goto-definition` to track the event `ctrl + click`
apm install ruby-navigator
# Toggle between single/double quotes using `CTRL + SHIFT + '`
apm install toggle-quotes
# RubyMine style go-back-forth breadcrumb style navigation
# use `Windows Key` + `[` or `]` to go back and forth
apm install atom-over-and-back
# Drag and drop to move text using the mouse. This mimics the standard behavior of many other editors.
apm install simple-drag-drop-text
apm install color-picker
apm install ruby-slim
@osazemeu
Copy link

osazemeu commented Jun 1, 2017

Thanks 👍

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