Skip to content

Instantly share code, notes, and snippets.

@wasifhossain
Forked from shivabhusal/atom_extenstions.sh
Created June 3, 2017 13:49
Show Gist options
  • Save wasifhossain/9759ebe3d21c53665ffcc1ce29c05607 to your computer and use it in GitHub Desktop.
Save wasifhossain/9759ebe3d21c53665ffcc1ce29c05607 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment