Skip to content

Instantly share code, notes, and snippets.

@ptsayli
Created December 11, 2019 11:46
Show Gist options
  • Save ptsayli/2ece7b7c37f554c85435758bbe5172a3 to your computer and use it in GitHub Desktop.
Save ptsayli/2ece7b7c37f554c85435758bbe5172a3 to your computer and use it in GitHub Desktop.
vscode settings
{
"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