This document covers a lot, but I recommend to watch tutorials
Tutplus.com Sublime [tutsplus.com]
After you complete it, check this and write down (memorize) which you consider important.
Sublime Text Cheat [pastebin.com]
Plugins make sublime powerful, I use so far these - Linter (with cppcheck), CodeIntel, Bracket Highlighter.
The only problem I had, was to set up cppcheck in Linter, paste this into user settings for Linter (path to cppcheck)
{
"sublimelinter": "load-save",
"sublimelinter_executable_map": {
"c" : "C:/Program Files/Cppcheck/cppcheck.exe",
"c++" : "C:/Program Files/Cppcheck/cppcheck.exe"
},
"sublimelinter_gutter_marks": true,
"sublimelinter_popup_errors_on_save": true,
"sublimelinter": "save-only"
}
Happy coding and don't use a mouse, use a keyboard with shortcuts!