Last active
October 11, 2015 08:12
-
-
Save softwarespot/644bf120b7d2f71e2f8d to your computer and use it in GitHub Desktop.
SublimeText user preferences
This file contains hidden or 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
{ | |
"theme": "Material-Theme-Darker.sublime-theme", | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme", | |
// Material Theme related settings | |
"overlay_scroll_bars": "disabled", | |
"line_padding_top": 3, | |
"line_padding_bottom": 3, | |
"font_options": [ "gray_antialias" ], // On retina Mac | |
"always_show_minimap_viewport": false, | |
"bold_folder_labels": true, | |
"indent_guide_options": [ "draw_normal", "draw_active" ], // Highlight active indent | |
"material_theme_small_tab": true, // Set small tabs | |
"material_theme_disable_fileicons": false, // Hide siderbar file type icons | |
"material_theme_disable_folder_animation": false, // Disable folder animation | |
"material_theme_small_statusbar": true, // Set small status bar | |
"material_theme_disable_tree_indicator": false, // Disable sidebar file indicator | |
"material_theme_bold_tab": true, // Make the tab labels bolder | |
"material_theme_tabs_separator": true, // Show tabs separator | |
"material_theme_accent_lime": true, // Set green lime accent color | |
"material_theme_accent_purple": true, // Set purple accent color | |
"material_theme_accent_red": true, // Set pale red accent color | |
"material_theme_accent_orange": true, // Set orange accent color | |
"material_theme_accent_yellow": true, // Set yellow accent color | |
"material_theme_panel_separator": true, // Show bottom panel separator | |
"material_theme_tabs_autowidth": true, // Enable autowidth for tabs | |
// SublimeText settings | |
"dictionary": "Packages/Language - English/en_GB.dic", | |
"drag_text": false, | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "Source Code Pro", | |
"font_size": 8, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"save_on_focus_lost": true, | |
"spell_check": true, | |
"tab_size": 4, | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"typescript_plugin_tsc_version": "1.6.2", | |
"word_wrap": true, | |
"wrap_width": 150 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment