In an earlier post, I have listed all the plugins I use in my Sublime Text Editor.
Whenever you edit your Settings in Sublime Text, ensure you update Settings - User under Preferences and not any other file since once you install an update to Sublime Text, the installer does not fiddle with Settings - User and hence you can retain all your settings even in the updated version. Donot update Settings - Default, since it will be erased with the latest version's Settings file.
I played around my Settings and currently I have configured my Sublime Text as per my requirement. Here are my User Settings:
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
{ | |
"always_show_minimap_viewport": false, | |
"auto_complete": true, | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_delay": 10, | |
"auto_complete_selector": "source - comment", | |
"auto_complete_size_limit": 4194304, | |
"auto_complete_triggers": | |
[ | |
{ | |
"characters": "<", | |
"selector": "text.html" | |
} | |
], | |
"auto_complete_with_fields": true, | |
"auto_indent": true, | |
"auto_match_enabled": true, | |
"binary_file_patterns": | |
[ | |
"*.jpg", | |
"*.jpeg", | |
"*.png", | |
"*.gif", | |
"*.ttf", | |
"*.tga", | |
"*.dds", | |
"*.ico", | |
"*.eot", | |
"*.pdf", | |
"*.swf", | |
"*.jar", | |
"*.zip" | |
], | |
"bold_folder_labels": true, | |
"caret_extra_bottom": 3, | |
"caret_extra_top": 3, | |
"caret_extra_width": 2, | |
"caret_style": "phase", | |
"close_windows_when_empty": false, | |
"color_scheme": "Packages/User/Monokai Soda.tmTheme", | |
"copy_with_empty_selection": false, | |
"create_window_at_startup": true, | |
"default_encoding": "UTF-8", | |
"default_line_ending": "system", | |
"detect_indentation": true, | |
"detect_slow_plugins": true, | |
"drag_text": true, | |
"draw_centered": false, | |
"draw_indent_guides": true, | |
"draw_minimap_border": false, | |
"draw_white_space": "selection", | |
"enable_hexadecimal_encoding": true, | |
"enable_tab_scrolling": false, | |
"ensure_newline_at_eof_on_save": false, | |
"fade_fold_buttons": true, | |
"fallback_encoding": "Western (Windows 1252)", | |
"file_exclude_patterns": | |
[ | |
"*.pyc", | |
"*.pyo", | |
"*.exe", | |
"*.dll", | |
"*.obj", | |
"*.o", | |
"*.a", | |
"*.lib", | |
"*.so", | |
"*.dylib", | |
"*.ncb", | |
"*.sdf", | |
"*.suo", | |
"*.pdb", | |
"*.idb", | |
".DS_Store", | |
"*.class", | |
"*.psd", | |
"*.db" | |
], | |
"find_selected_text": true, | |
"fold_buttons": true, | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS" | |
], | |
"font_face": "Fira Code", | |
"font_options": | |
[ | |
"no_round", | |
"subpixel_antialias" | |
], | |
"font_size": 13, | |
"gutter": true, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"hot_exit": true, | |
"ignored_packages": | |
[ | |
"Anaconda", | |
"GoSublime", | |
"Vintage" | |
], | |
"indent_guide_options": | |
[ | |
"draw_normal", | |
"draw_active" | |
], | |
"indent_subsequent_lines": true, | |
"indent_to_bracket": true, | |
"line_numbers": true, | |
"line_padding_bottom": 2, | |
"line_padding_top": 2, | |
"margin": 3, | |
"match_brackets": true, | |
"match_brackets_angle": true, | |
"match_brackets_braces": true, | |
"match_brackets_content": true, | |
"match_brackets_square": true, | |
"match_selection": true, | |
"match_tags": true, | |
"move_to_limit_on_up_down": true, | |
"open_files_in_new_window": true, | |
"overlay_scroll_bars": "system", | |
"preview_on_click": true, | |
"remember_open_files": true, | |
"rulers": | |
[ | |
], | |
"save_on_focus_lost": false, | |
"scala_worksheet_sync_views": true, | |
"scroll_past_end": false, | |
"scroll_speed": 1, | |
"shift_tab_unindent": true, | |
"show_full_path": true, | |
"show_panel_on_build": true, | |
"show_tab_close_buttons": false, | |
"smart_indent": true, | |
"soda_classic_tabs": true, | |
"soda_folder_icons": true, | |
"spell_check": false, | |
"tab_completion": true, | |
"tab_size": 4, | |
"tabs_padding_small": true, | |
"tabs_small": true, | |
"text-rendering": "optimizeLegibility", | |
"theme": "Soda Dark.sublime-theme", | |
"translate_tabs_to_spaces": false, | |
"tree_animation_enabled": true, | |
"trim_automatic_white_space": true, | |
"trim_trailing_white_space_on_save": false, | |
"use_simple_full_screen": false, | |
"use_tab_stops": true, | |
"wide_caret": true, | |
"word_separators": "./\\()\"'-:,.;<>~!@#$%^&*|+=[]{}`~?", | |
"word_wrap": "true", | |
"wrap_width": 135 | |
} |
Update on 05th April, 2015: After a fair bit of time here, I have moved on to GitHub hosted Octopress blogs. Please find me on http://P7h.org henceforth for all new updates.
No comments:
Post a Comment