Last active
October 4, 2016 21:11
-
-
Save gerardreches/78a3034e8a6f98158247cf29d6b4743f to your computer and use it in GitHub Desktop.
My sublime preferences
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
{ | |
"color_scheme": "Packages/Colorsublime - Themes/Flatland_Monokai.tmTheme", | |
"theme": "Material-Theme.sublime-theme", | |
"material_theme_compact_panel": true, | |
"material_theme_tree_headings": true, | |
"ignored_packages": ["Vintage"], | |
// Font options | |
"font_face": "Fira Code", | |
"font_size": 14, | |
"font_options": [], | |
// Gutter (Code lines sidebar) | |
"gutter": true, | |
"margin": 0, | |
"line_numbers": true, | |
"fold_buttons": true, | |
"fade_fold_buttons": false, | |
// Indentation | |
"tab_size": 4, | |
"auto_indent": true, | |
"smart_indent": true, | |
"use_tab_stops": true, | |
"indent_to_bracket": true, | |
"shift_tab_unindent": true, | |
"detect_indentation": false, | |
"translate_tabs_to_spaces": true, | |
"trim_automatic_white_space": true, | |
// Indentation helpers | |
"rulers": [], | |
"draw_white_space": "selection", | |
"draw_indent_guides": true, | |
"indent_guide_options": ["draw_active"], | |
// Word wrapping | |
"word_wrap": "auto", | |
"wrap_width": 0, | |
"draw_centered": false, | |
"indent_subsequent_lines": true, | |
// Saving | |
"atomic_save": false, | |
"save_on_focus_lost": true, | |
"ensure_newline_at_eof_on_save": false, | |
"trim_trailing_white_space_on_save": false, | |
// Encoding | |
"show_encoding": false, | |
"default_encoding": "UTF-8", | |
"show_line_endings": false, | |
"fallback_encoding": "Western (Windows 1252)", | |
"default_line_ending": "system", // "system" OR "windows" OR "unix" | |
"enable_hexadecimal_encoding": true, | |
// Autocompletion | |
"auto_complete": true, | |
"tab_completion": false, | |
"auto_close_tags": true, | |
"show_definitions": true, | |
"auto_complete_delay": 50, | |
"auto_complete_cycle": true, | |
"auto_complete_with_fields": false, | |
"auto_complete_commit_on_tab": false, | |
// Copy & paste | |
"copy_with_empty_selection": true, | |
// Drag & drop | |
"drag_text": false, | |
// Find tool | |
"find_selected_text": true, | |
"auto_find_in_selection": true, | |
// Pairing quotes, brackets, etc | |
"auto_match_enabled": true, | |
// Spell checking | |
"spell_check": false, | |
"dictionary": "Packages/Language - English/en_US.dic", | |
// Minimap | |
"draw_minimap_border": false, | |
"always_show_minimap_viewport": true, | |
// Highlighting and caret | |
"match_tags": true, | |
"caret_style": "phase", | |
"match_brackets": true, | |
"highlight_line": false, | |
"match_selection": true, | |
"caret_extra_top": 0, | |
"caret_extra_width": 0, | |
"caret_extra_bottom": 0, | |
"match_brackets_angle": false, | |
"match_brackets_square": true, | |
"match_brackets_braces": true, | |
"match_brackets_content": true, | |
// Line paddings | |
"line_padding_top": 3, | |
"line_padding_bottom": 3, | |
// Scrolling | |
"scroll_speed": 1.0, | |
"scroll_past_end": true, | |
"move_to_limit_on_up_down": false, | |
// UI | |
"overlay_scroll_bars": "enabled", // "system" OR "enabled" OR "disabled" | |
// UI - Animations | |
"animation_enabled": true, | |
"tree_animation_enabled": true, | |
// UI - Sidebar | |
"bold_folder_labels": true, | |
// UI - Tabs | |
"enable_tab_scrolling": false, | |
"show_tab_close_buttons": true, | |
"highlight_modified_tabs": true, | |
// UI - OS X only | |
"gpu_window_buffer": "auto", // "auto" OR true OR false | |
"use_simple_full_screen": true, | |
// Application Behavior Settings | |
"hot_exit": false, | |
"index_files": true, | |
"index_workers": 0, | |
"show_full_path": true, | |
"preview_on_click": true, | |
"show_errors_inline": true, | |
"show_panel_on_build": true, | |
"remember_full_screen": true, | |
"close_windows_when_empty": true, | |
"always_prompt_for_file_reload": false, | |
// Application Behavior Settings - Only OS X | |
"open_files_in_new_window": true, | |
"create_window_at_startup": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment