Last active
July 29, 2022 02:37
-
-
Save crapthings/48e00ea4b22e75e1ec7dfacf75cf81a7 to your computer and use it in GitHub Desktop.
sublime text 4 settings
This file contains hidden or 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
Show hidden characters
// Settings in here override those in "Default/Preferences.sublime-settings", | |
// and are overridden in turn by syntax-specific settings. | |
{ | |
"font_face": "Fira Code", | |
"font_size": 16, | |
"font_options": [ | |
"subpixel_antialias", | |
// "gray_antialias" | |
], | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"ignored_packages": | |
[ | |
"Vintage", | |
], | |
"color_scheme": "Packages/ayu/ayu-mirage.sublime-color-scheme", | |
"theme": "ayu-mirage.sublime-theme", | |
"ui_native_titlebar": true, // use native titlebars on macOs | |
"ui_separator": true, // separators between panels | |
"ui_wide_scrollbars": true, // wider scrollbars, | |
"create_window_at_startup": false, | |
"hot_exit": false, | |
"remember_open_files": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment