Last active
February 18, 2022 18:35
-
-
Save alexDtorres/811b5efb5b21c75fe461fdf9b6a9b7dc to your computer and use it in GitHub Desktop.
Preferences.sublime-settings
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
Show hidden characters
// Use Case: Sublime as a replacement for TextEdit or NotePad | |
// Scripts, config, and standalone files are edited in Sublime. | |
// Project development is saved for VSCode and IDE's. | |
// Use Sublime over Vim when opening files from GUI's (e.g. Finder, File Explorer, Nautilus, etc.) | |
{ | |
"tab_size": 2, | |
"margin": 2, | |
"translate_tabs_to_spaces": true, | |
"indent_to_bracket": true, | |
"shift_tab_unindent": true, | |
"auto_close_tags": true, | |
"show_encoding": true, | |
"close_windows_when_empty": true, | |
"index_workers": 12, | |
"font_size": 16, | |
"color_scheme": "Monokai.sublime-color-scheme", | |
"open_files_in_new_window": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment