Global and phovea specific
Last active
February 24, 2020 10:30
-
-
Save keckelt/27119808f9c894435d1a8b3c7bf5c80a to your computer and use it in GitHub Desktop.
VS Code Settings
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
{ | |
"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 | |
} |
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
{ | |
"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