Skip to content

Instantly share code, notes, and snippets.

@ZoranJambor
Created September 22, 2012 18:34
Show Gist options
  • Save ZoranJambor/3767340 to your computer and use it in GitHub Desktop.
Save ZoranJambor/3767340 to your computer and use it in GitHub Desktop.
Sublime text settings
{
//Basic settings
"bold_folder_labels": true,
"draw_minimap_border": true,
"draw_white_space": "all",
"highlight_line": true,
"line_padding_bottom": 1,
"line_padding_top": 1,
"scroll_past_end": true,
"shift_tab_unindent": true,
"tab_size": 4,
"trim_trailing_white_space_on_save": true,
"highlight_modified_tabs": true,
"show_tab_close_buttons": false,
"translate_tabs_to_spaces": false,
"word_wrap": true,
"spell_check": false,
"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS", ".sass-cache"],
//SublimeTODO
"todo": {
"case_sensitive": true,
"patterns": {
"DEPLOY": "DEPLOY[\\s]*?:+(?P<deploy>.*)$",
"FIXME": "FIXME[\\s]*?:+(?P<fixme>.*)$"
},
"folder_exclude_patterns":[
"libs"
],
"file_exclude_patterns":[
"*.log",
"*.txt"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment