Last active
March 29, 2020 10:11
-
-
Save Rockheung/62a7f4bd7b9c9260357c854902cdc60f to your computer and use it in GitHub Desktop.
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
{ | |
"workbench.iconTheme": "vscode-icons", | |
"editor.fontFamily": "'JetBrains Mono', D2Coding, monospace", | |
// The number of spaces a tab is equal to. This setting is overridden | |
// based on the file contents when `editor.detectIndentation` is true. | |
"editor.tabSize": 2, | |
"[python]": { | |
"editor.tabSize": 4 | |
}, | |
// Insert spaces when pressing Tab. This setting is overriden | |
// based on the file contents when `editor.detectIndentation` is true. | |
"editor.insertSpaces": true, | |
// When opening a file, `editor.tabSize` and `editor.insertSpaces` | |
// will be detected based on the file contents. Set to false to keep | |
// the values you've explicitly set, above. | |
"editor.detectIndentation": false, | |
"editor.formatOnSave": false, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"window.zoomLevel": 1, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"rest-client.rememberCookiesForSubsequentRequests": false, | |
"rest-client.defaultHeaders": { | |
"Content-Type": "application/json" | |
}, | |
"vsicons.dontShowNewVersionMessage": true, | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"rest-client.previewOption": "exchange", | |
"todohighlight.keywords": [ | |
{ | |
"text": "NOTE:", | |
"color": "white", | |
"backgroundColor": "#1976d2", | |
"overviewRulerColor": "grey" | |
}, | |
{ | |
"text": "ISSUE:", | |
"color": "white", | |
"backgroundColor": "#DA351A", | |
}, | |
{ | |
"text": "TESTME:", | |
"color": "white", | |
"backgroundColor": "#42A5F5", | |
} | |
], | |
// "editor.mouseWheelScrollSensitivity": 0.1, | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"editor.renderWhitespace": "all", | |
"workbench.editor.enablePreview": false, | |
"workbench.colorTheme": "Darcula", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment