-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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