Skip to content

Instantly share code, notes, and snippets.

@sdvg
Last active October 1, 2015 15:08
Show Gist options
  • Save sdvg/2013434 to your computer and use it in GitHub Desktop.
Save sdvg/2013434 to your computer and use it in GitHub Desktop.
sublime settings
[
{ "keys": ["cmd+v"], "command": "paste_and_indent" },
{ "keys": ["cmd+tab"], "command": "next_view" },
{ "keys": ["cmd+shift+tab"], "command": "prev_view" },
{ "keys": ["super+#"], "command": "toggle_comment", "args": { "block": false } }
]
[
{ "keys": ["ctrl+shift+v"], "command": "paste" },
{ "keys": ["ctrl+v"], "command": "paste_and_indent" },
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }
]
{
"auto_complete_commit_on_tab": true,
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "Packages/Color Scheme - Default/LAZY.tmTheme",
"default_line_ending": "unix",
"detect_indentation": false,
"draw_white_space": "all",
"font_face": "Source Code Pro",
"font_size": 13.0,
"highlight_line": true,
"open_files_in_new_window": false,
"rulers":
[
80,
120
],
"scroll_past_end": true,
"smart_indent": false,
"tab_completion": false,
"tab_size": 4,
"detect_indentation": false,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": true,
"folder_exclude_patterns": [".git", "node_modules", ".sass-cache"],
"binary_file_patterns": ["*.jpg", "*.jpeg", "*.png", "*.gif", "*.ttf", "*.tga", "*.dds", "*.ico", "*.eot", "*.pdf", "*.swf", "*.jar", "*.zip"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment