Last active
September 2, 2017 11:07
-
-
Save silvercircle/99dc302bbd1f491ac6bad1f6104b6582 to your computer and use it in GitHub Desktop.
My Visual Studio Code config
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
{ | |
"editor.fontFamily": "'Iosevka', Consolas, 'Courier New', monospace", | |
"editor.fontSize": 16, | |
"editor.minimap.renderCharacters": false, | |
"editor.cursorStyle": "block", | |
"editor.cursorBlinking": "phase", | |
"editor.showFoldingControls": "always", | |
"editor.minimap.showSlider": "always", | |
"window.restoreWindows": "all", | |
"explorer.openEditors.visible": 0, | |
"C_Cpp.intelliSenseEngine": "Default", | |
"workbench.startupEditor": "none", | |
"typescript.check.npmIsInstalled": false, | |
"telemetry.enableTelemetry": false, | |
"telemetry.enableCrashReporter": false, | |
"editor.renderWhitespace": "none", | |
"extensions.autoUpdate": false, | |
"git.autofetch": false, | |
"git.autorefresh": false, | |
"editor.occurrencesHighlight": false, | |
"python.linting.enabled": false, | |
"update.channel": "none", | |
"insertDateString.format": "YYYY-MM-DD hh:mm:ssZZZZ", | |
"workbench.colorCustomizations": { | |
"editorWhitespace.foreground": "#6a6", | |
"editor.findMatchHighlightBackground": "#8080ffa0", | |
"editor.findRangeHighlightBackground": "#888", | |
"editor.findMatchBackground": "#8080ffa0", | |
"editorIndentGuide.background": "#555", | |
"editorLineNumber.foreground": "#aaa", | |
"editorBracketMatch.border": "#f00", | |
"editorBracketMatch.background": "#888", | |
"editor.selectionHighlightBackground": "#8080ffa0", | |
"tab.inactiveForeground": "#aaf", | |
"tab.activeBackground": "#3C4769", | |
"editorError.foreground": "#ff0000", | |
"editorWarning.foreground": "#ffff00" | |
}, | |
"editor.renderControlCharacters": true, | |
"[markdown]": { | |
"editor.wordWrap": "wordWrapColumn", | |
"editor.renderWhitespace": "boundary", | |
"editor.wordWrapColumn": 100 | |
}, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.DS_Store": true, | |
"**/node_modules": true, | |
"**/.idea": true, | |
"**/.vscode": false, | |
"**/tmp": true | |
}, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/node_modules/**": true, | |
"**/tmp": true | |
}, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/.git": true, | |
"**/coverage": true, | |
"**/ios": true, | |
"**/android": true | |
}, | |
"window.zoomLevel": 0, | |
"rust.rustup": { | |
"toolchain": "stable-i686-pc-windows-msvc" | |
}, | |
"rust.mode": "legacy", | |
"window.menuBarVisibility": "toggle", | |
"workbench.colorTheme": "Dracula Soft" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment