Created
February 18, 2020 14:00
-
-
Save rob1121/d4a092624fb24d996e21e223cabe79ae to your computer and use it in GitHub Desktop.
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
{ | |
"files.autoSave": "onWindowChange", | |
"workbench.editor.highlightModifiedTabs": true, | |
"explorer.sortOrder": "type", | |
"editor.cursorStyle": "block", | |
"editor.cursorBlinking": "smooth", | |
"files.trimFinalNewlines": true, | |
"editor.renderIndentGuides": false, | |
"editor.fontFamily": "Operator Mono", | |
"editor.find.addExtraSpaceOnTop": false, | |
"editor.fontLigatures": true, | |
"workbench.colorTheme": "Operator Mono Dark Theme", | |
"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 | |
], | |
"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": "" | |
} | |
} | |
] | |
}, | |
"editor.fontSize": 12, | |
"editor.tabSize": 2, | |
"files.trimTrailingWhitespace": true, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.formatOnSave": true, | |
"editor.minimap.enabled": false, | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"editor.wordWrap": "on", | |
"editor.wordWrapColumn": 120, | |
"editor.formatOnSaveTimeout": 5000, | |
// "php-cs-fixer.executablePath": "${extensionPath}\\php-cs-fixer.phar", | |
"php-cs-fixer.lastDownload": 1580906401483, | |
"php-cs-fixer.executablePath": "${extensionPath}\\php-cs-fixer.phar", | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"window.zoomLevel": -1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment