Skip to content

Instantly share code, notes, and snippets.

@gcusso
Created May 18, 2019 08:50
Show Gist options
  • Save gcusso/4999626030b4487e83b1914009b63d86 to your computer and use it in GitHub Desktop.
Save gcusso/4999626030b4487e83b1914009b63d86 to your computer and use it in GitHub Desktop.
vs code settings
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Inconsolata",
"editor.fontSize": 17,
"git.autofetch": false,
"window.zoomLevel": 1,
"python.linting.pylintArgs": [
"--disable=C",
"--extension-pkg-whitelist=ujson",
"--extension-pkg-whitelist=cv2"
],
"workbench.iconTheme": "vs-seti",
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": false,
"workbench.colorTheme": "One Monokai",
"git.confirmSync": false,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\Sysnative\\WindowsPowerShell\\v1.0\\powershell.exe",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"python.formatting.autopep8Args": [
"--max-line-length 300"
],
"jupyter.appendResults": true,
"workbench.statusBar.feedback.visible": false,
"csharp.referencesCodeLens.enabled": true,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"debug.inlineValues": true,
"smartsemicolon.autoLineChange": false,
"python.jediEnabled": false,
"window.menuBarVisibility": "default",
"editor.cursorBlinking": "smooth",
// "editor.fontWeight": "600",
"files.insertFinalNewline": true,
"editor.smoothScrolling": true,
"breadcrumbs.enabled": true,
"breadcrumbs.filePath": "last",
"window.titleBarStyle": "custom",
"editor.acceptSuggestionOnEnter": "smart",
"editor.codeLens": false,
"files.associations": {
"*.proto": "javascript",
"*.svg": "html"
},
"json.format.enable": false,
"editor.quickSuggestionsDelay": 5,
"bookmarks.navigateThroughAllFiles": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment