Skip to content

Instantly share code, notes, and snippets.

@andersr
Created August 20, 2019 11:19
Show Gist options
  • Save andersr/7cf322fdf21eae8434bcc54ae4033ce3 to your computer and use it in GitHub Desktop.
Save andersr/7cf322fdf21eae8434bcc54ae4033ce3 to your computer and use it in GitHub Desktop.
{
"workbench.startupEditor": "newUntitledFile",
"files.insertFinalNewline": true,
"javascript.format.enable": false,
"workbench.iconTheme": "vscode-icons",
"editor.wordWrap": "on",
"workbench.colorTheme": "One Dark Pro Vivid",
"terminal.integrated.shell.osx": "/usr/local/bin/fish",
"terminal.integrated.fontFamily": "Source Code Pro for Powerline",
"editor.formatOnSave": true,
"editor.tabSize": 1,
"editor.snippetSuggestions": "top",
"explorer.confirmDragAndDrop": false,
"typescript.tsdk": "/usr/local/lib/node_modules/typescript/lib",
"typescript.preferences.quoteStyle": "single",
"typescript.updateImportsOnFileMove.enabled": "prompt",
"gitlens.keymap": "chorded",
"window.openFoldersInNewWindow": "on",
"window.zoomLevel": 0,
"workbench.quickOpen.closeOnFocusLost": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"workbench.editor.enablePreview": false,
"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"
}
},
"extensions.ignoreRecommendations": true,
"vsicons.dontShowNewVersionMessage": true,
"macros": {
"commentDown": [
"editor.action.copyLinesDownAction",
"cursorUp",
"editor.action.addCommentLine",
"cursorDown"
]
},
"breadcrumbs.enabled": false,
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"workbench.sideBar.location": "left",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"terminal.integrated.rendererType": "dom"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment