Skip to content

Instantly share code, notes, and snippets.

@c18s
Created August 30, 2019 07:41
Show Gist options
  • Save c18s/5b650f3ea7657e391dace480c09f373f to your computer and use it in GitHub Desktop.
Save c18s/5b650f3ea7657e391dace480c09f373f to your computer and use it in GitHub Desktop.
vscode setting json file
{
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "One Dark Pro",
"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace, 'Meslo LG S for Powerline'",
"files.trimTrailingWhitespace": true,
"yaml.format.singleQuote": true,
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.autoIndent": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"vs-kubernetes": {
"vs-kubernetes.helm-path": "/usr/local/bin/helm",
"vs-kubernetes.minikube-path": "/Users/tum/.vs-kubernetes/tools/minikube/darwin-amd64/minikube",
"vs-kubernetes.draft-path": "/Users/tum/.vs-kubernetes/tools/draft/darwin-amd64/draft"
},
"prettier.singleQuote": true,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.recentChange.enabled": false,
"editor.tabSize": 2,
"sync.gist": "c5afebc8a3e973bd3277dd784cf8e3df",
"terminal.integrated.shell.osx": "/bin/zsh",
"editor.formatOnSave": true,
"typescript.preferences.importModuleSpecifier": "relative",
"javascript.preferences.importModuleSpecifier": "relative",
"git.autofetch": true,
"breadcrumbs.enabled": true,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"vscode-coverage-highlighter.coveredColor": "rgba(20, 250, 20, 0)",
"vscode-coverage-highlighter.unCoveredColor": "rgba(255, 20, 20, 0.3)",
"html.format.extraLiners": "",
"[html]": {
"editor.formatOnSave": false,
"editor.defaultFormatter": "vscode.html-language-features"
},
"typescript.updateImportsOnFileMove.enabled": "always",
"importSorter.generalConfiguration.sortOnBeforeSave": true,
"importSorter.importStringConfiguration.tabSize": 2,
"importSorter.importStringConfiguration.trailingComma": "multiLine",
"importSorter.importStringConfiguration.maximumNumberOfImportExpressionsPerLine.type": "newLineEachExpressionAfterCountLimitExceptIfOnlyOne",
"importSorter.importStringConfiguration.maximumNumberOfImportExpressionsPerLine.count": 80,
"importSorter.sortConfiguration.removeUnusedImports": true,
"workbench.iconTheme": "vscode-icons",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"vsicons.projectDetection.disableDetect": true,
"window.zoomLevel": 0,
"files.associations": {
"*.dump": "sql",
"*.Makefile": "makefile",
".env.tpl": "dotenv"
},
"extensions.ignoreRecommendations": false,
"git.confirmSync": false,
"html.format.wrapLineLength": 0,
"html.format.indentInnerHtml": true,
"html.format.preserveNewLines": false,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"yaml.format.enable": true,
"yaml.trace.server": "verbose",
"[dockerfile]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
},
"sync.forceUpload": true,
"vsicons.dontShowNewVersionMessage": true,
"html.format.endWithNewline": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment