Sublime2 favourite configuration

Sublime2 favourite configuration

As long as I’m not huge fan of Sublime Text 2 – I have to admin it’s really fast. This is the fastest editor which I ever seen. So – for quick edit I’m usually using it. But there are 2 annoying default settings which I really can’t stand: opening each file in new tab, and moving to the end of the file on “end” keystroke. Finally I founded how to solve my daily problem.

This set of changes in .sublime-settings file solves my problems with tabs and autoIdent default preferences:

{
  "autoIndent": true,
  "open_files_in_new_window": false,
  "tab_size": 4,
  "translate_tabs_to_spaces": false
}

and second set in .sublime-keymap solves my problems with end and home

{ "keys": ["home"], "command": "move_to", "args": {"to": "hardbol", "extend": false} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "hardeol", "extend": false} }