To make "Paste & Indent" the default behavior in Sublime Text 2:
- CMD+SHIFT+P
- Type "key bindings"
- Choose "Key Bindings - User"
- Add the following:
// swap the keybindings for paste and paste_and_indent
// (see https://gist.github.com/twosixcode/1988097)
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" }
See also https://gist.github.com/twosixcode/1988097 (Thanks @twosixcode)
All key bindings I tend to use: (updated as of Q2 2021)