Skip to content

Instantly share code, notes, and snippets.

@TannerRogalsky
Created June 26, 2012 23:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save TannerRogalsky/3000071 to your computer and use it in GitHub Desktop.
Save TannerRogalsky/3000071 to your computer and use it in GitHub Desktop.
Uken Sublime Settings
[
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+r"], "command": "reveal_in_side_bar" },
{ "keys": ["super+ctrl+r"], "command": "reveal_in_side_bar" }
]
{
// Set to true to removing trailing white space on save
"trim_trailing_white_space_on_save": true,
// Set to true to ensure the last line of the file ends in a newline
// character when saving
"ensure_newline_at_eof_on_save": true,
// Note that the font_face and font_size are overriden in the platform
// specific settings file, for example, "Preferences (Linux).sublime-settings".
// Because of this, setting them here will have no effect: you must set them
// in your User File Preferences.
"font_face": "monaco",
"font_size": 12,
// Trims white space added by auto_indent when moving the caret off the
// line.
"trim_automatic_white_space": true,
// By default, shift+tab will only unindent if the selection spans
// multiple lines. When pressing shift+tab at other times, it'll insert a
// tab character - this allows tabs to be inserted when tab_completion is
// enabled. Set this to true to make shift+tab always unindent, instead of
// inserting tabs.
"shift_tab_unindent": true,
// The number of spaces a tab is considered equal to
"tab_size": 2,
// Set to true to insert spaces when tab is pressed
"translate_tabs_to_spaces": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment