Skip to content

Instantly share code, notes, and snippets.

View arnaudbreton's full-sized avatar

Arnaud Breton arnaudbreton

View GitHub Profile
@twosixcode
twosixcode / gist:1988097
Created March 6, 2012 18:40
Make "Paste and Indent" the default paste in Sublime Text 2
// swap the keybindings for paste and paste_and_indent
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" }