Skip to content

Instantly share code, notes, and snippets.

@smartpcr
Created June 5, 2020 09:18
Show Gist options
  • Select an option

  • Save smartpcr/23efe7080936d7fcf497e60146337d42 to your computer and use it in GitHub Desktop.

Select an option

Save smartpcr/23efe7080936d7fcf497e60146337d42 to your computer and use it in GitHub Desktop.
vs code settings
{
"editor.tabSize": 4,
"prettier.tabWidth": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1000,
"window.zoomLevel": 1,
"git.enableSmartCommit": true,
"terminal.integrated.shell.windows": "C:\\Program Files\\PowerShell\\7\\pwsh.exe",
"workbench.sideBar.location": "right",
"editor.formatOnType": true,
"typescript.referencesCodeLens.enabled": true,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"git.autofetch": true,
"git.confirmSync": false,
"diffEditor.ignoreTrimWhitespace": true,
"editor.mouseWheelZoom": true,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"workbench.startupEditor": "newUntitledFile",
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"gitlens.historyExplorer.enabled": false,
"gitlens.gitExplorer.enabled": false,
"terminal.integrated.rendererType": "dom",
"vs-kubernetes": {
"vs-kubernetes.kubectl-path": "C:\\Users\\xiaodoli\\.vs-kubernetes\\tools\\kubectl\\kubectl.exe",
"vs-kubernetes.helm-path": "C:\\Users\\xiaodoli\\.vs-kubernetes\\tools\\helm\\windows-amd64\\helm.exe",
"vs-kubernetes.draft-path": "C:\\Users\\xiaodoli\\.vs-kubernetes\\tools\\draft\\windows-amd64\\draft.exe",
"vs-kubernetes.minikube-path": "C:\\Users\\xiaodoli\\.vs-kubernetes\\tools\\minikube\\windows-amd64\\minikube.exe",
"vs-kubernetes.minikube-path.windows": "C:\\Users\\xiaodoli\\.vs-kubernetes\\tools\\minikube\\windows-amd64\\minikube.exe"
},
"sync.gist": "21313ad142085835013f70b4281d1ef0",
"sync.host": "",
"sync.pathPrefix": "",
"sync.quietSync": false,
"sync.askGistName": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.lastUpload": "2018-08-08T15:11:58.876Z",
"sync.lastDownload": "",
"sync.forceDownload": false,
"typescript.tsdk": "C:\\Users\\xiaodoli\\AppData\\Roaming\\npm\\node_modules\\typescript\\lib",
"markdown-pdf.executablePath": "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"diffEditor.renderSideBySide": true,
"vsicons.dontShowNewVersionMessage": true,
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.detectIndentation": true,
},
"editor.renderWhitespace": "all",
"editor.wordWrap": "on",
"editor.renderFinalNewline": false,
"files.trimFinalNewlines": true,
"files.associations": {
"*.tpl": "yaml"
},
"code-eol.style": {
"color" : "#6ffc38",
"opacity" : 1.0
},
"code-eol.newlineCharacter":"¬",
"code-eol.validLineEnding": "LF",
"files.eol": "\n",
"editor.renderControlCharacters": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment