Skip to content

Instantly share code, notes, and snippets.

@glaucocustodio
Created January 5, 2015 16:30
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save glaucocustodio/5d6519c65552671fbcee to your computer and use it in GitHub Desktop.
Save glaucocustodio/5d6519c65552671fbcee to your computer and use it in GitHub Desktop.
Increase font size and row padding from Sublime Text 3's sidebar
// 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
},
]
@YingCGooi
Copy link

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!

@otonielguajardo
Copy link

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

@mmcgraw73
Copy link

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment