Tested in Mac OS X: super == command
Open/Goto
- super+t: go to file
- super+ctrl+p: go to project
- super+r: go to methods
#1 - Install Thoughtbot's script | |
https://github.com/thoughtbot/laptop | |
#2 - iTerm2 / byobu | |
- Download iTerm2 Solarized Dark | |
- https://github.com/mbadolato/iTerm2-Color-Schemes | |
http://fideloper.com/mac-vim-tmux | |
http://www.sitepoint.com/tmux-a-simple-start/ | |
https://gist.github.com/simme/1297707 | |
http://www.linux.com/learn/tutorials/623327-enhancing-virtual-terminals-with-byobu |
# source this file | |
wget https://github.com/ktaragorn/dotfiles/blob/master/bashrc.d/scm_ps1 | |
brew install bash-completion | |
# copy into bash_profile | |
source scm_ps1 | |
if [ -f $(brew --prefix)/etc/bash_completion ]; then | |
. $(brew --prefix)/etc/bash_completion |
{ | |
"Version": "2008-10-17", | |
"Id": "Policy1395742968152", | |
"Statement": [ | |
{ | |
"Sid": "Stmt1395742934142", | |
"Effect": "Allow", | |
"Principal": { | |
"AWS": "*" | |
}, |
PROJECT_DIR="$( cd "$( dirname "${BASH_SOURCE}" )/.." && pwd )" |
To Change [1] to .jpg in all your files | |
First, lets display the output to make sure it is correct | |
ls * | awk '{print("mv "$1" "$1)}' | sed 's/\[1\]/.jpg/2' | |
If it looks right, pipe the output to shell to execute | |
ls * | awk '{print("mv "$1" "$1)}' | sed 's/\[1\]/.jpg/2' | /bin/sh |
"AlignTab", | |
"BeautifyRuby", | |
"Block Cursor Everywhere", | |
"BracketHighlighter", | |
"CTags", | |
"Decent Color Scheme", | |
"Git", | |
"GitGutter", | |
"Haml", | |
"Neon Color Scheme", |
add the following lines to ~/.ssh/config | |
ServerAliveCountMax 3 | |
ServerAliveInterval 10 |
# Change from zsh to bash | |
chsh | |
change /bin/zsh to /bin/bash | |
# .bash_profile | |
# Exports | |
# ======= | |
# Make sublime our editor of choice |
sudo ln -s "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl |