Skip to content

Instantly share code, notes, and snippets.

@ptz0n
Last active October 12, 2015 07:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ptz0n/3992900 to your computer and use it in GitHub Desktop.
Save ptz0n/3992900 to your computer and use it in GitHub Desktop.
Sublime Text 2 Config
[
{
"keys": ["ctrl+w"],
"command": "toggle_setting",
"args":
{
"setting": "word_wrap"
}
},
{
"keys": ["ctrl+,", "<character>"],
"command": "easy_motion",
"args": {"select_text": false}
},
{
"keys": ["ctrl+shift+,", "<character>"],
"command": "easy_motion",
"args": {"select_text": true}
}
]
{
"trim_trailing_white_space_on_save": false
}
{
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme",
"file_exclude_patterns":
[
".DS_Store",
"*.pyc",
"*.lock"
],
"folder_exclude_patterns":
[
".git",
".sass-cache",
"node_modules",
".bundle",
"__pycache__"
],
"font_size": 12.0,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"ASP",
"Lisp",
"Vintage",
"ZenCoding",
"Matlab",
"ActionScript",
"Emmet"
],
"rulers":
[
80,
100
],
"scroll_past_end": true,
"show_minimap": false,
"show_tab_close_buttons": false,
"spell_check": false,
"tab_size": 4,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"wide_caret": true,
"word_wrap": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment