Skip to content

Instantly share code, notes, and snippets.

@philsinatra
Last active December 19, 2015 12:48
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 philsinatra/5957077 to your computer and use it in GitHub Desktop.
Save philsinatra/5957077 to your computer and use it in GitHub Desktop.
Sublime Text 2 Preferences
// Settings
// Option 1: Chrome Dev Tools
{
"auto_complete": true,
"auto_complete_commit_on_tab": true,
"auto_complete_with_fields": true,
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "Packages/User/Chrome (SL).tmTheme",
"detect_slow_plugins": false,
"draw_white_space": "all",
"fade_fold_buttons": true,
"font_face": "Menlo",
"font_options": "subpixel_antialias",
"font_size": 12,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"line_padding_bottom": 2,
"line_padding_top": 2,
"rulers":
[
80,
120
],
"scroll_past_end": true,
"tab_size": 2,
"theme": "Soda Light.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": true,
"wrap_width": 120
}
// Option 2: Spacegray
{
"auto_complete": true,
"auto_complete_commit_on_tab": true,
"auto_complete_with_fields": true,
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "Packages/User/base16-ocean.dark (SL).tmTheme",
"detect_slow_plugins": false,
"draw_minimap_border": true,
"draw_white_space": "all",
"fade_fold_buttons": true,
"font_face": "Fira Mono OT",
"font_options": "subpixel_antialias",
"font_size": 12,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintageous",
"Vintage"
],
"line_padding_bottom": 2,
"line_padding_top": 2,
"margin": -1,
"open_files_in_new_window": false,
"rulers":
[
80,
120
],
"scroll_past_end": true,
"tab_size": 2,
"theme": "Spacegray.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_separators": "./\\()\"'-:,.;<>~!@#%^&*|+=[]{}`~?",
"word_wrap": true,
"wrap_width": 120
}
// Key Bindings
[
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" },
{ "keys": ["ctrl+shift+r"], "command": "reindent" , "args": {"single_line": false}},
{ "keys": ["ctrl+super+x"], "command": "prefixr" }
]
{
"auto_complete": true,
"auto_complete_commit_on_tab": true,
"auto_complete_with_fields": true,
"bold_folder_labels": true,
"caret_extra_bottom": 2,
"caret_extra_top": 2,
"caret_extra_width": 1,
"caret_style": "phase",
"color_scheme": "Packages/User/base16-ocean.dark (SL).tmTheme",
"detect_slow_plugins": false,
"draw_minimap_border": true,
"draw_white_space": "all",
"fade_fold_buttons": true,
"font_face": "Menlo",
"font_options": "subpixel_antialias",
"font_size": 12,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage",
"Vintageous",
"Markdown"
],
"indent_guide_options": "draw_active",
"line_padding_bottom": 2,
"line_padding_top": 2,
"margin": -1,
"match_brackets": true,
"match_brackets_angle": true,
"match_brackets_braces": true,
"match_brackets_content": true,
"match_brackets_square": true,
"open_files_in_new_window": true,
"rulers":
[
80,
120
],
"scroll_past_end": true,
"tab_size": 2,
"theme": "Spacegray.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"wide_caret": true,
"word_separators": "./\\()\"'-:,.;<>~!@#%^&*|+=[]{}`~?",
"word_wrap": true,
"wrap_width": 120
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment