Sublime Text settings
My custom config file for Sublime Text 3.
{ | |
// The theme controls the look of Sublime Text's UI (buttons, tabs, scroll bars, etc) | |
"theme": "Material-Theme.sublime-theme", | |
// Sets the colors used within the text area | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
// Material theme settings | |
// Accent | |
"material_theme_accent_bright-teal": true, | |
// Panels | |
"material_theme_panel_separator" : true, | |
"material_theme_small_statusbar" : true, | |
"material_theme_bright_scrollbars" : true , | |
// Tabs | |
"material_theme_small_tab": false, | |
// Additional settins for material theme appbar | |
// "material_theme_tree_headings": true, | |
// Always visualise the viewport on the minimap, as opposed to only | |
// showing it on mouse over | |
"always_show_minimap_viewport": false, | |
// Show folders in the side bar in bold | |
"bold_folder_labels": true, | |
// Note that the font_face and font_size are overridden in the platform | |
// specific settings file, for example, "Preferences (Linux).sublime-settings". | |
// Because of this, setting them here will have no effect: you must set them | |
// in your User File Preferences. | |
"font_face": "Fira Code", | |
"font_size": 9, | |
// Additional spacing at the top of each line, in pixels | |
"line_padding_top": 8, | |
// Additional spacing at the bottom of each line, in pixels | |
"line_padding_bottom": 8, | |
// Valid options are "no_bold", "no_italic", "no_antialias", "gray_antialias", | |
// "subpixel_antialias", "no_round" (OS X only), "gdi" (Windows only) and | |
// "directwrite" (Windows only) | |
"font_options": [ "gray_antialias", "subpixel_antialias" ], | |
// If enabled, will highlight any line with a caret | |
"highlight_line": true, | |
// Exiting the application with hot_exit enabled will cause it to close | |
// immediately without prompting. Unsaved modifications and open files will | |
// be preserved and restored when next starting. | |
// | |
// Closing a window with an associated project will also close the window | |
// without prompting, preserving unsaved changes in the workspace file | |
// alongside the project. | |
"hot_exit": false, | |
// List any packages to ignore here. When removing entries from this list, | |
// a restart may be required if the package contains plugins. | |
"ignored_packages": [ | |
"Vintage" | |
], | |
// Controls how the indent guides are drawn, valid options are | |
// "draw_normal" and "draw_active". draw_active will draw the indent | |
// guides containing the caret in a different color. | |
"indent_guide_options": [ | |
"draw_normal", | |
"draw_active" | |
], | |
// Set the visibility of menu | |
"menu_visible": false, | |
// Valid values are "system", "enabled" and "disabled" | |
"overlay_scroll_bars": "enabled", | |
// Should sublime remember last opened files? | |
"remember_open_files": false, | |
// Columns in which to display vertical rulers | |
"rulers": [80], | |
// Set to a value other than 0 to force wrapping at that column rather than the | |
// window width | |
"wrap_width": 80, | |
// The number of spaces a tab is considered equal to | |
"tab_size": 4, | |
"translate_tabs_to_spaces": true, | |
// Trims white space added by auto_indent when moving the caret off the | |
// line. | |
"trim_automatic_white_space": true, | |
// Set to true to removing trailing white space on save | |
"trim_trailing_white_space_on_save": true | |
} |