Last active
August 24, 2020 11:14
-
-
Save Lucky-Loek/8108c999421ec6e2c064552bde873060 to your computer and use it in GitHub Desktop.
My VS Code 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
{ | |
// Prevent Microsoft from spying on me | |
"workbench.enableExperiments": false, | |
"workbench.settings.enableNaturalLanguageSearch": false, | |
"telemetry.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
"npm.fetchOnlinePackageInfo": false, | |
// I use "scoop" for updates, so disable auto-updates | |
"update.enableWindowsBackgroundUpdates": false, | |
// Screencast mode is useful, but showing every key is a bit too much | |
"screencastMode.onlyKeyboardShortcuts": true, | |
// I like the json settings more | |
"workbench.settings.editor": "json", | |
// Theme | |
"workbench.colorTheme": "Braver's Solarized Light", | |
// Font | |
"editor.fontFamily": "Iosevka, Consolas, Monaco, monospace", | |
"editor.fontSize": 18, | |
"editor.lineHeight": 28, | |
// "editor.fontSize": 32, // When in front of class | |
// "editor.lineHeight": 44, // When in front of class | |
"editor.fontLigatures": true, // Combines multiple characters into a single one, which eases brain processing | |
// At 80 and 110 characters, show a ruler to let me know I'm running out of space | |
// After 110 characters, wrap the line so it doesn't run off my screen | |
"editor.rulers": [80, 110], | |
"editor.wordWrap": "wordWrapColumn", | |
"editor.wordWrapColumn": 110, | |
// Automatically save files whenever I unfocus VS Code | |
"files.autoSave": "onFocusChange", | |
// Trim unnecessary whitespace and end files with a single newline | |
"files.trimTrailingWhitespace": true, | |
"files.insertFinalNewline": true, | |
// I don't really like the breadcrumbs | |
"breadcrumbs.enabled": false, | |
// I've never tried another icon theme but this one seems just fine | |
"workbench.iconTheme": "vscode-icons", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment