Skip to content

Instantly share code, notes, and snippets.

@osazemeu
Forked from shivabhusal/atom_extenstions.sh
Created June 1, 2017 11:18
Show Gist options
  • Save osazemeu/8b9e75ff4176c20a2e3da250a500ad82 to your computer and use it in GitHub Desktop.
Save osazemeu/8b9e75ff4176c20a2e3da250a500ad82 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