Created
January 5, 2015 16:30
-
-
Save glaucocustodio/5d6519c65552671fbcee to your computer and use it in GitHub Desktop.
Increase font size and row padding from Sublime Text 3's sidebar
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
// for the ST3 users who don't have the Default.sublime-theme file (which is actually the default configuration), | |
// the simplest procedure is: | |
// 1- Navigate to Sublime Text -> Preferences -> Browse Packages | |
// 2- Open the User directory | |
// 3- Create a file named Default.sublime-theme with the following content (modify font.size as required): | |
[ | |
{ | |
"class": "sidebar_label", | |
"color": [0, 0, 0], | |
"font.size": 16 | |
}, | |
{ | |
"class": "sidebar_tree", | |
//"row_padding": [8, 3], | |
"row_padding": [8, 7], | |
"indent": 12, | |
"indent_offset": 17, | |
"indent_top_level": false, | |
"layer0.tint": [230, 230, 230], | |
"layer0.opacity": 1.0, | |
"dark_content": false | |
}, | |
] |
Gracias! lo utilicé para personalizar aún mejor mi tema de Spacegray nombrando el archivo como Spacegray.sublime-theme, en vez de Default.sublime-theme
👍
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have been looking on how to reduce the indentation size of the sidebar folder icons.
Thank you for providing a nice guide on how to do this!