I am trying out Microsoft's VS Code editor to see if it is good enough to replace Sublime.
Below is a work in progress of transferring settings I liked in Sublime.
I am a fan of the Tomorrow Night Bright theme.
These are the extensions I installed:
Debuggers
Languages
Linters
Other
// This file overwrites the default settings | |
// Font download @ https://github.com/chrissimpkins/codeface/tree/master/fonts/camingo-code | |
{ | |
"update.channel": "none", | |
"telemetry.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
"editor.fontFamily": "CamingoCode", | |
"editor.fontSize": 14, | |
"editor.renderWhitespace": true, | |
"files.trimTrailingWhitespace": true, | |
"git.path": "c:/Program Files/Git/mingw64/libexec/git-core/git.exe", | |
"python.pythonPath": "c:/python/bin/python.exe" | |
} |