Last active
February 21, 2020 09:32
-
-
Save KISSMonX/6b89c3febb063f3fa41d5f2bc9dd8d5b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.iconTheme": "vscode-icons", | |
"files.autoSave": "afterDelay", | |
"files.autoSaveDelay": 10000, | |
"editor.fontSize": 15, | |
"editor.tabSize": 8, | |
"editor.renderWhitespace": "all", | |
"editor.wordWrapColumn": 120, | |
"editor.insertSpaces": true, | |
"window.restoreWindows": "all", | |
"search.smartCase": true, | |
"search.showLineNumbers": true, | |
"debug.console.fontSize": 14, | |
"go.lintTool": "golangci-lint", | |
"editor.acceptSuggestionOnEnter": "smart", | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.formatOnSave": true, | |
"C_Cpp.loggingLevel": "Debug", | |
"explorer.confirmDragAndDrop": false, | |
"clang-format.language.c.style": "file", | |
"clang-format.language.cpp.style": "file", | |
"clang-format.style": "file", | |
"clang-format.language.apex.enable": false, | |
"clang-format.language.cuda.enable": false, | |
"clang-format.language.glsl.enable": false, | |
"editor.formatOnSaveTimeout": 850, | |
"C_Cpp.clang_format_fallbackStyle": "Google", | |
"bracket-pair-colorizer-2.forceUniqueOpeningColor": true, | |
"bracket-pair-colorizer-2.forceIterationColorCycle": true, | |
"bracket-pair-colorizer-2.highlightActiveScope": true, | |
"bracket-pair-colorizer-2.showBracketsInGutter": true, | |
"bracket-pair-colorizer-2.showHorizontalScopeLine": true, | |
"bracket-pair-colorizer-2.activeScopeCSS": [ | |
"borderStyle : solid", | |
"borderWidth : 1px", | |
"borderColor : {color}; opacity: 0.5", | |
"backgroundColor : {color}" | |
], | |
"go.autocompleteUnimportedPackages": true, | |
"gitlens.codeLens.scopes": [ | |
"containers", | |
"document" | |
], | |
"gitlens.statusBar.alignment": "left", | |
"gitlens.hovers.currentLine.enabled": false, | |
"gitlens.hovers.avatars": false, | |
"gitlens.mode.statusBar.alignment": "left", | |
"[c]": { | |
"editor.defaultFormatter": "xaver.clang-format" | |
}, | |
"clang-format.language.objective-c.enable": false, | |
"window.zoomLevel": 0, | |
"rust-client.trace.server": "verbose", | |
"rust-client.updateOnStartup": true, | |
"[cpp]": { | |
"editor.defaultFormatter": "xaver.clang-format" | |
}, | |
"vs-kubernetes": { | |
"vs-kubernetes.minikube-path": "/Users/mingh/.vs-kubernetes/tools/minikube/darwin-amd64/minikube", | |
"vs-kubernetes.draft-path": "/Users/mingh/.vs-kubernetes/tools/draft/darwin-amd64/draft" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"explorer.confirmDelete": false, | |
"[css]": { | |
"editor.tabSize": 4, | |
"editor.insertSpaces": true, | |
}, | |
"prettier.printWidth": 120, | |
"prettier.tabWidth": 4, | |
"prettier.useTabs": true, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"files.associations": { | |
"*.toml": "toml" | |
}, | |
"pgFormatter.spaces": 4, | |
"pgFormatter.commaStart": false, | |
"pgFormatter.commaBreak": true, | |
"pgFormatter.commaEnd": true, | |
"pgFormatter.noComment": false, | |
"pgFormatter.noGrouping": true, | |
"pgFormatter.keywordCase": "uppercase", | |
"pgFormatter.formatType": false, | |
"pgFormatter.functionCase": "unchanged", | |
"goModGrapher.engine": "dot", | |
"graphvizPreview.engine": "dot", | |
"[yaml]": { | |
"editor.defaultFormatter": "redhat.vscode-yaml" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"editor.minimap.enabled": false, | |
"better-comments.multilineComments": true, | |
"better-comments.tags": [ | |
{ | |
"tag": "!", | |
"color": "#FF2D00", | |
"strikethrough": false, | |
"backgroundColor": "transparent" | |
}, | |
{ | |
"tag": "?", | |
"color": "#3498DB", | |
"strikethrough": false, | |
"backgroundColor": "transparent" | |
}, | |
{ | |
"tag": "//", | |
"color": "#474747", | |
"strikethrough": true, | |
"backgroundColor": "transparent" | |
}, | |
{ | |
"tag": "todo", | |
"color": "#FF8C00", | |
"strikethrough": false, | |
"backgroundColor": "transparent" | |
}, | |
{ | |
"tag": "fixme", | |
"color": "#ff66ff", | |
"strikethrough": false, | |
"backgroundColor": "transparent" | |
}, | |
{ | |
"tag": "note", | |
"color": "#00ffcc", | |
"strikethrough": false, | |
"backgroundColor": "transparent" | |
}, | |
{ | |
"tag": "*", | |
"color": "#98C379", | |
"strikethrough": false, | |
"backgroundColor": "transparent" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment