Created
December 11, 2019 11:46
-
-
Save ptsayli/2ece7b7c37f554c85435758bbe5172a3 to your computer and use it in GitHub Desktop.
vscode 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
{ | |
"workbench.colorTheme": "Atom One Dark", | |
"editor.fontFamily": "FiraCode-Medium", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 16, | |
"editor.scrollBeyondLastLine": false, | |
"editor.tabSize": 2, | |
"prettier-eslint.eslintIntegration": true, | |
"prettier.jsxSingleQuote": true, | |
"prettier.semi": false, | |
"prettier.singleQuote": true, | |
"prettier.trailingComma": "all", | |
"terminal.integrated.rendererType": "dom", | |
"diffEditor.ignoreTrimWhitespace": false, | |
"[javascript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"window.zoomLevel": 0, | |
"git.confirmSync": false, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"java.configuration.checkProjectSettingsExclusions": false, | |
"workbench.editor.showTabs": true, | |
"editor.minimap.enabled": false, | |
"workbench.activityBar.visible": true, | |
"[vue]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"workbench.settings.useSplitJSON": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment