Skip to content

Instantly share code, notes, and snippets.

@keckelt
Last active February 24, 2020 10:30
Show Gist options
  • Save keckelt/27119808f9c894435d1a8b3c7bf5c80a to your computer and use it in GitHub Desktop.
Save keckelt/27119808f9c894435d1a8b3c7bf5c80a to your computer and use it in GitHub Desktop.
VS Code Settings

Global and phovea specific

{
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"editor.tabSize": 2,
"editor.detectIndentation": false,
"git.enableSmartCommit": true,
"editor.fontFamily": "'Fira Code Light', 'Cascadia Code', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 13,
"workbench.editor.limit.enabled": true,
"workbench.editor.limit.perEditorGroup": false,
"workbench.editor.limit.value": 12,
"terminal.integrated.fontFamily": "Meslo LG M DZ for Powerline",
"terminal.integrated.cursorStyle": "line",
"liveServer.settings.donotShowInfoMsg": true,
"window.zoomLevel": 0
}
{
"files.autoSave": "off",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.pyc": true,
"*/src/**/*.js": true,
"src/**/*.js": true,
"*/src/**/*.d.ts": true,
"src/**/*.d.ts": true,
"**/*.map": true,
"**/.cache-loader": true
},
"diffEditor.ignoreTrimWhitespace": false,
"python.linting.pylintEnabled": false,
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true
},
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment