Skip to content

Instantly share code, notes, and snippets.

@JoshBarr
Created September 16, 2015 05:11
Show Gist options
  • Save JoshBarr/460afb1ec2f7960fdcf8 to your computer and use it in GitHub Desktop.
Save JoshBarr/460afb1ec2f7960fdcf8 to your computer and use it in GitHub Desktop.
sublime config
{
"always_show_minimap_viewport": true,
"auto_complete": false,
"auto_complete_commit_on_tab": true,
"auto_match_enabled": true,
"bold_folder_labels": true,
"caret_style": "solid",
"color_scheme": "Packages/User/SublimeLinter/Material Oceanic Next (SL).tmTheme",
"detect_indentation": true,
"draw_indent_guides": true,
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
"*.DS_Store",
"*.pyc",
"*.git"
],
"find_selected_text": true,
"fold_buttons": false,
"folder_exclude_patterns":
[
"node_modules",
".svn",
".git"
],
"font_face": "Menlo",
"font_options":
[
"no_round"
],
"font_size": 14,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"GitGutter",
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"indent_to_bracket": true,
"index_exclude_patterns":
[
"*.log",
"/Users/josh/sites/wagtail/wagtail/wagtail/wagtailadmin/static/wagtailadmin/js/explorer-menu.js"
],
"line_padding_bottom": 3,
"line_padding_top": 3,
"linters":
{
"pep8":
{
"@disable": false,
"ignore": "",
"max-line-length": 120
}
},
"match_brackets": true,
"match_brackets_angle": false,
"match_brackets_braces": true,
"match_brackets_content": true,
"match_brackets_square": true,
"new_window_settings":
{
"hide_open_files": true,
"show_tabs": true,
"side_bar_visible": true,
"status_bar_visible": true
},
"overlay_scroll_bars": "enabled",
"remember_open_files": true,
"remember_open_folders": true,
"rulers":
[
80
],
"scroll_past_end": false,
"show_full_path": true,
"show_minimap": true,
"spell_check": false,
"tab_size": 4,
"theme": "Material Oceanic Next.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"use_simple_full_screen": true,
"vintage_start_in_command_mode": false,
"wide_caret": true,
"word_wrap": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment