Last active
January 29, 2023 06:05
-
-
Save gsw945/4e3a6ccac3069a217c0cb8a4e7d8775a to your computer and use it in GitHub Desktop.
sublime text 3 Preferences.sublime-settings file
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
# Package Control (from: https://packagecontrol.io/installation) | |
Solarized Color Scheme | |
DocBlockr | |
ChineseLocalizations | |
ConvertToUTF8 | |
Terminal | |
Terminus | |
SublimeCodeIntel | |
Jedi - Python autocompletion | |
SFTP | |
INI | |
LESS | |
OmniSharp | |
Gomod | |
Jinja2 | |
JsFormat | |
Babel | |
Babel Snippets | |
Emmet | |
HTML-CSS-JS Prettify | |
TypeScript | |
auto-save |
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
{ | |
"file_exclude_patterns": | |
[ | |
"*.mp3", | |
"*.mp4", | |
"*.pyc", | |
"*.pyo", | |
"*.exe", | |
"*.msi", | |
"*.msixbundle", | |
"*.dll", | |
"*.obj", | |
"*.o", | |
"*.a", | |
"*.lib", | |
"*.so", | |
"*.syso", | |
"*.dylib", | |
"*.ncb", | |
"*.sdf", | |
"*.suo", | |
"*.pdb", | |
"*.idb", | |
".DS_Store", | |
"*.class", | |
"*.psd", | |
"*.db", | |
"*.sublime-workspace" | |
], | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS", | |
"__pycache__", | |
"dist", | |
"node_modules" | |
], | |
"font_size": 11, | |
"highlight_line": true, | |
"always_show_minimap_viewport": true, | |
"draw_minimap_border": true, | |
"ignored_packages": | |
[ | |
"Vintage", | |
], | |
"tab_size": 4, | |
"translate_tabs_to_spaces": true, | |
"word_wrap": false, | |
"show_line_endings": true, | |
"show_encoding": true, | |
// "default_line_ending": "system", | |
"default_line_ending": "unix", | |
"theme": "Default.sublime-theme", | |
// "color_scheme": "Packages/Solarized Color Scheme/Solarized (light).tmTheme", | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.sublime-color-scheme", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment