I love working with Sublime Text, but one of its features annoys me sometimes which is \"the accidental zoom in\". Whenever that happens it breaks the momentum
However, there isn't a keyboard shortcut for resetting the zoom/font size. Normally this would be super + 0(aka cmd + 0) in most apps, but Sublime Text doesn't give you this by default.
To get this feature you need to add the following to your keyboard bindings (found under Preferences -> Key Bindings)
{ "keys": ["super+0"], "command": "reset_font_size" }
Courtesy: coderwall.com