The theme and fonts settings of my Sublime text
1 min readFeb 28, 2020
Recently, I’m quite happy with Sublime Text.
The theme and fonts settings of mine, just for my own record:
{
"color_scheme": "Packages/Theme - One Dark/Widget - One Dark.tmTheme",
"font_face": "Hack",
"ignored_packages":
[
"Vintage"
],
"theme": "Gravity.sublime-theme",
"enable_tab_scrolling": false,
// Determines what character(s) are used to terminate each line in new files.
// Valid values are 'system' (whatever the OS uses), 'windows' (CRLF) and
// 'unix' (LF only).
"default_line_ending": "unix",// Display file encoding in the status bar
"show_encoding": true,// Display line endings in the status bar
"show_line_endings": true
}