My Sublime Text 3 User Prefs
I'm mostly posting this as a reminder to myself that I have my config backed up somewhere. ;)
That being said, I've found other folks' Sublime Text 3 preferences really interesting. So, for bits and giggles... here's mine:
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
Show hidden characters
{ | |
"always_show_minimap_viewport": true, | |
"auto_complete": false, | |
"auto_complete_commit_on_tab": true, | |
"bold_folder_labels": true, | |
"caret_extra_bottom": 1, | |
"caret_extra_top": 1, | |
"caret_extra_width": 1, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Theme - Otto/schemes/Otto Oceanic.tmTheme", | |
"create_window_at_startup": false, | |
"drag_text": false, | |
"draw_indent_guides": true, | |
"ensure_newline_at_eof_on_save": true, | |
"fade_fold_buttons": false, | |
"file_exclude_patterns": | |
[ | |
".DS_Store" | |
], | |
"folder_exclude_patterns": | |
[ | |
"bin", | |
".bundle", | |
".git", | |
".sass-cache", | |
"tmp", | |
"*.esproj" | |
], | |
"font_face": "CamingoCode", | |
"font_options": | |
[ | |
"no_bold", | |
"subpixel_antialias" | |
], | |
"font_size": 14, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"LESS", | |
"Markdown", | |
"Vintage" | |
], | |
"indent_guide_options": | |
[ | |
"draw_normal", | |
"draw_active" | |
], | |
"index_exclude_patterns": | |
[ | |
".codekit-cache/*", | |
".imdone/*", | |
"bower_components/*", | |
"node_modules/*", | |
"*.esproj" | |
], | |
"index_files": true, | |
"line_padding_bottom": 3, | |
"line_padding_top": 3, | |
"match_brackets": true, | |
"match_brackets_angle": false, | |
"match_brackets_braces": true, | |
"match_brackets_content": true, | |
"match_brackets_square": true, | |
"new_window_settings": | |
{ | |
"hide_open_files": true, | |
"show_minimap": true, | |
"show_tabs": true, | |
"side_bar_visible": true, | |
"status_bar_visible": true | |
}, | |
"overlay_scroll_bars": "enabled", | |
"remember_open_files": true, | |
"remember_open_folders": true, | |
"rulers": | |
[ | |
80 | |
], | |
"save_on_focus_lost": false, | |
"scroll_past_end": true, | |
"show_line_endings": true, | |
"tab_size": 4, | |
"theme": "Otto Oceanic.sublime-theme", | |
"theme_agila_modified_tab_marker_yellow": true, | |
"theme_agila_sidebar_font_xsmall": true, | |
"theme_otto_accent_green": true, | |
"theme_otto_find_and_replace_close_hide": false, | |
"theme_otto_scrollbars_monochrome": false, | |
"theme_otto_scrollbars_wide": true, | |
"theme_otto_tab_selected_underlined": true, | |
"translate_tabs_to_spaces": false, | |
"trim_trailing_white_space_on_save": true, | |
"use_simple_full_screen": true, | |
"vintage_start_in_command_mode": false, | |
"word_wrap": true | |
} |