Skip to content

Instantly share code, notes, and snippets.

@WQ23
Last active December 30, 2023 12:32
Show Gist options
  • Save WQ23/2f6e201a370af7c85853173732ade290 to your computer and use it in GitHub Desktop.
Save WQ23/2f6e201a370af7c85853173732ade290 to your computer and use it in GitHub Desktop.
VSCode settings.json [30 Dec 23]
{
"[plaintext]": {
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
}
},
"workbench.startupEditor": "none",
"editor.suggestSelection": "first",
"editor.minimap.enabled": false,
"editor.fontSize": 14,
"editor.formatOnPaste": true,
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [
80
],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": "off"
},
"workbench.colorCustomizations": {
"editor.lineHighlightBackground": "#1073cf2d",
"editor.lineHighlightBorder": "#9fced11f"
},
"diffEditor.wordWrap": "off",
"editor.guides.indentation": false,
"editor.guides.bracketPairs": false,
"extensions.ignoreRecommendations": true,
"workbench.editor.enablePreview": false,
"bookmarks.sideBar.expanded": true,
"git.confirmSync": false,
"git.autofetch": true,
"git.enableSmartCommit": true,
"update.showReleaseNotes": false,
"git.openRepositoryInParentFolders": "always",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"explorer.confirmDelete": false,
"editor.wordWrapColumn": 1000,
"editor.wordWrap": "wordWrapColumn",
"prettier.proseWrap": "never",
"prettier.printWidth": 1000,
"css.format.maxPreserveNewLines": 3,
"css.format.spaceAroundSelectorSeparator": true,
"files.autoSave": "afterDelay",
"dotnet.server.useOmnisharp": true,
"omnisharp.organizeImportsOnFormat": true,
"[csharp]": {
// "editor.defaultFormatter": "ms-dotnettools.csharp"
"editor.defaultFormatter": "csharpier.csharpier-vscode"
},
"omnisharp.useModernNet": false,
"prettier.bracketSameLine": true,
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"remove-empty-lines.allowedNumberOfEmptyLines": 1,
"remove-empty-lines.runOnSave": true,
"redhat.telemetry.enabled": false,
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"security.workspace.trust.enabled": false,
"security.workspace.trust.banner": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.formatOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment