Skip to content

Instantly share code, notes, and snippets.

View michaelmagistro's full-sized avatar

Michael Magistro michaelmagistro

View GitHub Profile
@michaelmagistro
michaelmagistro / Vim.md
Last active June 16, 2016 19:33
Vim cheatsheet

Concise VIM Cheatsheet - based off of the Shortcutfoo Dojo

  • Beginner Text Navigation
    • k - Move up one line
    • j - Move down one line
    • h - Move left one character
    • l - Move right one character
    • e - Move to end of word
    • b - Move to beginning of word
    • $ - Move to end of line
@michaelmagistro
michaelmagistro / ubuntu.sh
Created February 14, 2016 04:49
Setup new rails dev machine
function setupenv() {
# set -eu
echo 'update apt'
sudo apt-get update -y
echo 'upgrade apt'
sudo apt-get upgrade -y
echo 'install git and zshell'
sudo apt-get install git -y
sudo apt-get install zsh -y
echo 'install rbenv'