Created
November 19, 2012 17:41
-
-
Save marvin/4112201 to your computer and use it in GitHub Desktop.
my sublime config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"auto_complete": true, | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_delay": 50, | |
"auto_complete_selector": "source - comment", | |
"auto_complete_size_limit": 4194304, | |
"auto_complete_triggers": | |
[ | |
{ | |
"characters": "<", | |
"selector": "text.html" | |
} | |
], | |
"auto_complete_with_fields": false, | |
"auto_indent": true, | |
"auto_match_enabled": true, | |
"caret_style": "smooth", | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"default_encoding": "UTF-8", | |
"default_line_ending": "system", | |
"detect_indentation": true, | |
"detect_slow_plugins": false, | |
"draw_minimap_border": true, | |
"draw_white_space": "selection", | |
"ensure_newline_at_eof_on_save": true, | |
"fade_fold_buttons": true, | |
"fallback_encoding": "UTF-8", | |
"find_selected_text": true, | |
"file_exclude_patterns": [".*", "*.pyc", "*.pyo", "*.exe", "*.dll", "*.obj","*.o", "*.a", "*.lib", "*.so", "*.dylib", "*.ncb", "*.sdf", "*.suo", "*.pdb", "*.idb", ".DS_Store", "*.class", "*.psd", "*.db"], | |
"fold_buttons": true, | |
"font_face": "Source Code Pro", | |
"font_size": 10, | |
"gutter": true, | |
"highlight_line": true, | |
"indent_subsequent_lines": true, | |
"line_numbers": true, | |
"line_padding_bottom": 0, | |
"line_padding_top": 0, | |
"match_brackets": true, | |
"match_brackets_braces": true, | |
"match_brackets_content": true, | |
"match_brackets_square": true, | |
"match_tags": true, | |
"rulers": | |
[ | |
100 | |
], | |
"scroll_past_end": true, | |
"shift_tab_unindent": false, | |
"spell_check": false, | |
"tab_completion": true, | |
"tab_size": 2, | |
"theme": "Soda Dark.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_automatic_white_space": true, | |
"trim_trailing_white_space_on_save": true, | |
"use_tab_stops": true, | |
"word_wrap": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment