Skip to content

Instantly share code, notes, and snippets.

@meleyal
Last active March 18, 2016 11:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meleyal/6609805 to your computer and use it in GitHub Desktop.
Save meleyal/6609805 to your computer and use it in GitHub Desktop.
Sublime Text settings
[
{ "keys": ["ctrl+shift+."], "command": "erb" },
{ "keys": ["ctrl+super+r"], "command": "reveal_in_side_bar" },
{ "keys": ["super+j"], "command": "swap_line_down" },
{ "keys": ["super+k"], "command": "swap_line_up" },
{ "keys": ["Y"], "command": "clipboard_copy",
"context": [{"key": "clipboardcopy_fake", "operator":"equal", "operand":true}, {"key": "setting.command_mode"}]
},
{ "keys": ["y"], "command": "clipboard_copy",
"context": [{"key": "clipboardcopy_fake", "operator":"equal", "operand":true}, {"key": "setting.command_mode"}]
},
{ "keys": ["D"], "command": "clipboard_copy",
"context": [{"key": "clipboardcopy_fake", "operator":"equal", "operand":true}, {"key": "setting.command_mode"}]
},
{ "keys": ["d"], "command": "clipboard_copy",
"context": [{"key": "clipboardcopy_fake", "operator":"equal", "operand":true}, {"key": "setting.command_mode"}]
}
]
{
"caret_style": "wide",
"color_scheme": "Packages/Theme - Docco/Docco.tmTheme",
"draw_indent_guides": false,
"file_exclude_patterns":
[
".DS_Store",
"*.db",
".gitignore",
".gitkeep",
".slugignore"
],
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
"*_temp",
"openresty",
"tmp",
"logs",
"log",
"deps",
"ufraw",
".sass-cache",
"sass_cache",
"node_modules",
".metadata",
"public/resources"
],
"font_face": "Monaco",
"font_size": 14.0,
"ignored_packages": [],
"line_numbers": false,
"line_padding_bottom": 2,
"line_padding_top": 2,
"save_on_focus_lost": true,
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"vintage_use_clipboard": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment