Skip to content

Instantly share code, notes, and snippets.

@dinkopehar
Last active March 23, 2019 07:36
Show Gist options
  • Save dinkopehar/ca2221eccaf0f1a96ba254d458201513 to your computer and use it in GitHub Desktop.
Save dinkopehar/ca2221eccaf0f1a96ba254d458201513 to your computer and use it in GitHub Desktop.
Visual Studio Code custom settings, mainly for python
{
"editor.fontSize": 20,
"editor.minimap.enabled": true,
"editor.fontLigatures": true,
"editor.fontFamily": "'Dank Mono','Fira Code','Anonymous Pro', Consolas, 'Courier New', monospace",
"editor.cursorBlinking": "blink",
"editor.smoothScrolling": true,
"editor.lineHeight": 34,
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": false,
"editor.letterSpacing": 2,
"editor.autoIndent": true,
"editor.links": true,
"editor.matchBrackets": true,
"editor.rulers": [
72,
80
],
"workbench.iconTheme": "vscode-icons",
"workbench.sideBar.location": "right",
"workbench.activityBar.visible": true,
"workbench.colorTheme": "One Dark Pro",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorCustomizations": {
"statusBar.background": "#005f5f",
"statusBar.noFolderBackground": "#005f5f",
"statusBar.debuggingBackground": "#005f5f",
"activityBar.background": "#005f5f"
},
"window.zoomLevel": 1,
"window.menuBarVisibility": "default",
"window.titleBarStyle": "custom",
"extensions.ignoreRecommendations": true,
"vsicons.dontShowNewVersionMessage": true,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1000,
"breadcrumbs.enabled": true,
"debug.inlineValues": true,
"terminal.integrated.shell.windows": "bash",
"terminal.integrated.copyOnSelection": true,
"css.lint.float": "warning",
"python.linting.enabled": false,
"python.autoComplete.addBrackets": true,
"python.terminal.executeInFileDir": true,
"python.formatting.provider": "autopep8",
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment