Skip to content

Instantly share code, notes, and snippets.

@cristianferrarig
Last active December 9, 2015 23:08
Show Gist options
  • Save cristianferrarig/4342215 to your computer and use it in GitHub Desktop.
Save cristianferrarig/4342215 to your computer and use it in GitHub Desktop.
{
// Theme and color scheme
"theme": "predawn.sublime-theme",
"color_scheme": "Packages/Predawn/predawn.tmTheme",
"tabs_medium": true,
"predawn_findreplace_small": false,
"predawn_quick_panel_small": true,
"predawn_sidebar_arrows": true,
// Typography
"font_size": 16,
"tab_size": 2,
"font_options": ["no_round"],
"highlight_line": true,
"caret_extra_width": 1,
"caret_style": "phase",
"word_wrap": false,
"draw_white_space": "all",
// Whitespace, Matching, Copy & Auto-Complete
"copy_with_empty_selection": true,
"drag_text": false,
"match_brackets_content": false,
"match_selection": true,
"match_tags": true,
"translate_tabs_to_spaces": true,
"trim_automatic_white_space": true,
"trim_trailing_white_space_on_save": true,
// Interface & Behavior
"close_windows_when_empty": false,
"draw_minimap_border": true,
"enable_tab_scrolling": false,
"overlay_scroll_bars": "enabled",
"open_files_in_new_window": false,
"preview_on_click": true,
"scroll_past_end": true,
"scroll_speed": 5.0,
"show_full_path": false,
"shift_tab_unindent": true,
"show_tab_close_buttons": false,
"bold_folder_labels": true,
"highlight_modified_tabs": true,
// Ignored Packages
"ignored_packages":
[
"ActionScript",
"AppleScript",
"ASP",
"Batch File",
"C#",
"Clojure",
"D",
"Erlang",
"Go",
"Graphviz",
"Groovy",
"Haskell",
"JSHint Gutter",
"LaTeX",
"Lisp",
"Lua",
"Matlab",
"OCaml",
"Perl",
"Python",
"R",
"RestructuredText",
"Scala",
"SHS-Bourbon",
"SHS-Bourbon-Neat",
"SHS-Compass-Mixins",
"SHS-Compass-Variables",
"TCL",
"Theme - Aqua",
"TodoReview",
"Translate",
"Vintage",
"Whitespace Corrector"
],
}
// TodoReview's default settings.
{
"patterns": {
"CHANGED": "CHANGED[\\s]*?:+(?P<changed>.*)$",
"FIXME": "FIX ?ME[\\s]*?:+(?P<fixme>.*)$",
"NOTE": "NOTE[\\s]*?:+(?P<note>.*)$",
"TODO": "TODO[\\s]*?:+(?P<todo>.*)$",
"BUG": "BUG[\\s]*?:+(?P<bug>.*)$"
},
"exclude_folders": [
".git",
".sass-cache",
"vendor",
"build",
"tmp"
],
"exclude_files": [
"*.css"
],
"case_sensitive": false,
"render_include_folder": false,
"render_spaces": 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment