Last active
November 14, 2018 07:29
-
-
Save ChristopherNeuwirth/61a529a36b76c01bca8fb047220a92cb to your computer and use it in GitHub Desktop.
VS Code Einstellungen
This file contains 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
// Platzieren Sie Ihre Einstellungen in dieser Datei, um die Standardeinstellungen zu überschreiben. | |
{ | |
"editor.fontSize": 13, | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "Operator Mono, Menlo, Monaco, 'Courier New', monospace", | |
"workbench.activityBar.visible": true, | |
"workbench.statusBar.visible": true, | |
"editor.minimap.enabled": false, | |
"workbench.colorTheme": "One Dark Theme", | |
"editor.tabSize": 2, | |
"editor.renderIndentGuides": false, | |
"files.exclude": { | |
"**/.git": true | |
}, | |
"files.autoSave": "onFocusChange", | |
"gitlens.keymap": "alternate", | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
"suppressResultsExplorerNotice": false, | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"terminal.integrated.cursorStyle": "underline", | |
"terminal.integrated.cursorBlinking": true, | |
"terminal.integrated.fontFamily": "Operator Mono", | |
"terminal.integrated.fontSize": 13, | |
"terminal.integrated.lineHeight": 1.3, | |
"gitlens.historyExplorer.enabled": true, | |
"window.zoomLevel": 0, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.formatOnSave": true, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
{ | |
"language": "vue", | |
"autoFix": true | |
}, | |
{ | |
"language": "html", | |
"autoFix": true | |
} | |
], | |
"prettier.disableLanguages": [], | |
"vetur.format.defaultFormatter.html": "js-beautify-html", | |
"git.autofetch": true, | |
"githubPullRequests.hosts": [{ | |
"host": "https://github.com", | |
"username": "oauth", | |
"token": "system" | |
}], | |
"vsicons.projectDetection.autoReload": true, | |
"prettier.eslintIntegration": true, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [{ | |
"scope": [ | |
//following will be in italic (=FlottFlott) | |
"comment", | |
"entity.name.type.class", //class names | |
"keyword", //import, export, return… | |
"constant", //String, Number, Boolean…, this, super | |
"storage.modifier", //static keyword | |
"storage.type.class.js", //class keyword | |
"entity.name.constructor", | |
"entity.name.function", | |
"variable.language.this.js", | |
"storage.type.property.js" | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": [ | |
//following will be excluded from italics (VSCode has some defaults for italics) | |
"invalid", | |
"keyword.operator", | |
"constant.numeric.css", | |
"keyword.other.unit.px.css", | |
"constant.numeric.decimal.js", | |
"constant.numeric.json" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment