Skip to content

Instantly share code, notes, and snippets.

@dufferzafar
Created November 14, 2013 19:01
Show Gist options
  • Save dufferzafar/7472417 to your computer and use it in GitHub Desktop.
Save dufferzafar/7472417 to your computer and use it in GitHub Desktop.
My Sublime Text 3 User Preferences
{
"theme": "Soda Light 3.sublime-theme",
"color_scheme": "Packages/Monokai Extended/Monokai Extended.tmTheme",
"font_size": 13,
"line_padding_top": 1,
"line_padding_bottom": 1,
"tab_size": 3,
// Performance
"animation_enabled": false,
"tree_animation_enabled": false,
"highlight_line": true,
"highlight_modified_tabs": true,
"fade_fold_buttons": false,
"bold_folder_labels": true,
"caret_style": "phase",
"find_selected_text": true,
"copy_with_empty_selection": false,
// Opens binary files the way they are...
"enable_hexadecimal_encoding": false,
"ensure_newline_at_eof_on_save": true,
"trim_trailing_white_space_on_save": true,
"update_check": false,
// Package Control: Ignored packages
"ignored_packages":
[
"Git",
"Vintage",
"Theme - Flatland",
"Nettuts+ Fetch",
"Markdown",
"Goto Documentation",
"Jedi - Python autocompletion",
"knockdown",
"SublimeREPL"
],
// Dictionary: Ignored words
"ignored_words":
[
"bio",
"cyber"
],
// SublimeTasks Plugin
"todo":
{
"case_sensitive": false,
"file_exclude_patterns":
[
"*.css",
"*.po",
"*.mo"
],
"folder_exclude_patterns":
[
"static",
"vendor",
"tmp"
],
"patterns":
{
"BUG": "BUG[\\s]*?:+(?P<bug>.*)$"
},
"result_title": "TODO Results"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment