Skip to content

Instantly share code, notes, and snippets.

@sirodoht
Last active March 22, 2023 18:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sirodoht/aca2a64b1a4d48e0b975656295ee319c to your computer and use it in GitHub Desktop.
Save sirodoht/aca2a64b1a4d48e0b975656295ee319c to your computer and use it in GitHub Desktop.
VSCode settings JSON configuration
{
"editor.bracketPairColorization.enabled": true,
"editor.cursorStyle": "block",
"editor.dragAndDrop": false,
"editor.hover.enabled": false,
"editor.linkedEditing": false,
"editor.minimap.enabled": true,
"editor.minimap.showSlider": "always",
"editor.minimap.size": "fill",
"editor.renderWhitespace": "selection",
"editor.rulers": [
80,
120
],
"editor.stickyScroll.enabled": true,
"editor.inlineSuggest.enabled": true,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"explorer.openEditors.visible": 20,
"extensions.ignoreRecommendations": true,
"extensions.autoCheckUpdates": false,
"files.watcherExclude": {
"**/venv": true
},
"problems.showCurrentInStatus": true,
"security.workspace.trust.enabled": false,
"workbench.activityBar.visible": false,
"workbench.colorCustomizations": {
"editor.selectionBackground": "#ffe0e0",
"editor.selectionHighlightBackground": "#ffe0e0"
},
"workbench.colorTheme": "Atom One Light",
"workbench.editor.showTabs": false,
"workbench.editor.untitled.hint": "hidden",
"workbench.iconTheme": null,
"workbench.startupEditor": "none",
"workbench.settings.editor": "json",
"update.mode": "manual",
"window.restoreWindows": "none",
"window.zoomLevel": 1,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"go.lintTool": "golangci-lint",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment