Skip to content

Instantly share code, notes, and snippets.

@sebald
Last active October 10, 2015 15:37
Show Gist options
  • Save sebald/3712551 to your computer and use it in GitHub Desktop.
Save sebald/3712551 to your computer and use it in GitHub Desktop.
Sublime Settings
{
"auto_complete_selector": "source - comment, meta.tag - punctuation.definition.tag.begin",
"bold_folder_labels": true,
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"default_line_ending": "unix",
"ensure_newline_at_eof_on_save": true,
"show_full_path": true,
"file_exclude_patterns":
[
"*.sublime-workspace",
".DS_Store"
],
"folder_exclude_patterns":
[
".git",
".sass-cache",
"tmp",
"dist",
"coverage",
"node_modules",
"_site",
".env"
],
"font_size": 14,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage",
"Alignment",
"jQuery",
"HTML Mustache",
"Djaneiro",
"Placeholders",
"CSScomb",
"DocBlockr",
"Markdown"
],
"line_padding_bottom": 1,
"open_files_in_new_window": false,
"soda_classic_tabs": true,
"tab_size": 4,
"theme": "Soda Dark.sublime-theme",
"todo":
{
"case_sensitive": true,
"file_exclude_patterns":
[
"*.css",
"*.scssc"
],
"folder_exclude_patterns":
[
"dist",
"node_modules",
"vendor"
],
"patterns":
{
"FIXME": "FIXME[\\s]*?:+(?P<fixme>.*)$",
"TODO": "TODO[\\s]*?:+(?P<todo>.*)$"
},
"result_title": "List of TODOs and FIXMEs"
},
"translate_tabs_to_spaces": false,
"trim_trailing_white_space_on_save": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment