Skip to content

Instantly share code, notes, and snippets.

@honzabrecka
Created June 29, 2020 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save honzabrecka/9ed38a428635e75332438a714b8c61ba to your computer and use it in GitHub Desktop.
Save honzabrecka/9ed38a428635e75332438a714b8c61ba to your computer and use it in GitHub Desktop.
{
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true
},
"editor.rulers": [
80,
100,
],
"workbench.fontAliasing": "antialiased",
"editor.fontSize": 14.2,
"editor.fontWeight": "400",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.tabSize": 2,
"editor.detectIndentation": true,
"editor.renderControlCharacters": false,
"editor.wordWrap": "on",
"editor.cursorBlinking": "solid",
"editor.minimap.enabled": false,
"workbench.activityBar.visible": false,
"workbench.statusBar.visible": true,
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"editor.gotoLocation.multipleDeclarations": "goto",
"editor.gotoLocation.multipleDefinitions": "goto",
"editor.gotoLocation.multipleImplementations": "goto",
"editor.gotoLocation.multipleReferences": "goto",
"editor.gotoLocation.multipleTypeDefinitions": "goto",
"window.zoomLevel": 0,
"explorer.autoReveal": false,
"extensions.ignoreRecommendations": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
// prettier
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// js/flow/typescript
"javascript.validate.enable": false,
"flow.useNPMPackagedFlow": true,
"typescript.suggest.autoImports": false,
"javascript.suggest.autoImports": false,
// plugins
"vsicons.dontShowNewVersionMessage": true,
"breadcrumbs.enabled": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"workbench.colorTheme": "Solarized Light",
"workbench.iconTheme": "vscode-icons",
"workbench.startupEditor": "newUntitledFile",
"remote.SSH.defaultForwardedPorts": [
{
"localPort": 3005,
"name": "3005",
"remotePort": 3005
},
{
"localPort": 3015,
"name": "3015",
"remotePort": 3015
}
],
"eslint.alwaysShowStatus": true,
"eslint.debug": true,
"eslint.workingDirectories": [
{ "mode": "auto" }
],
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment