Skip to content

Instantly share code, notes, and snippets.

@andersr
Created June 19, 2019 10:30
Show Gist options
  • Save andersr/8afe5d2b25c573ca9d476602fd9efcfd to your computer and use it in GitHub Desktop.
Save andersr/8afe5d2b25c573ca9d476602fd9efcfd to your computer and use it in GitHub Desktop.
{
"workbench.startupEditor": "newUntitledFile",
"editor.wordWrap": "on",
"terminal.integrated.shell.linux": "/usr/bin/fish",
"terminal.integrated.fontFamily": "Source Code Pro for Powerline",
"files.insertFinalNewline": true,
"editor.snippetSuggestions": "top",
"editor.gotoLocation.multiple": "goto",
"typescript.tsdk": "/usr/local/lib/node_modules/typescript/lib",
"files.associations": {
"**/Fastfile": "ruby"
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/*.js": {
"when": "$(basename).ts"
},
"**/*.js.map": true,
"**/*.jsx.map": true,
"**/*?.js": {
"when": "$(basename).tsx"
},
"**/*.jsx": {
"when": "$(basename).tsx"
}
},
"window.zoomLevel": 1,
"workbench.colorTheme": "Quiet Light",
"gitlens.codeLens.enabled": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.autoClosingTags": false,
"workbench.sideBar.location": "left",
"editor.renderWhitespace": "boundary",
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.codeActionsOnSave": {
"source.fixAll.tslint": true,
},
"editor.formatOnSave": true,
"breadcrumbs.enabled": false,
"git.autofetch": true,
"workbench.iconTheme": "vscode-icons",
"javascript.updateImportsOnFileMove.enabled": "always"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment