Skip to content

Instantly share code, notes, and snippets.

@cijagani
Last active December 25, 2018 10:20
Show Gist options
  • Save cijagani/dfa33389d016a36413db9d30d05a9e06 to your computer and use it in GitHub Desktop.
Save cijagani/dfa33389d016a36413db9d30d05a9e06 to your computer and use it in GitHub Desktop.
Increasing the Sidebar Font Size in Sublime Text
[
{
"class": "sidebar_label",
"color": [0,0,0],
"font.bold": false,
"font.size": 15,
"font.face": "open sans"
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"color": [255,0,0]
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row","attributes": ["selected"]}],
"color": [0,0,255],
"font.italic": true
},
]
@cijagani
Copy link
Author

Navigate to Sublime Text -> Preferences -> Browse Packages.

Open the User directory.
Create a file named Default.sublime-theme (if you're using the default theme, otherwise use the theme name, e.g. Material-Theme-Darker.sublime-theme ) with the following content (modify font.size as required):

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