Last active
March 22, 2023 18:13
-
-
Save sirodoht/aca2a64b1a4d48e0b975656295ee319c to your computer and use it in GitHub Desktop.
VSCode settings JSON configuration
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
{ | |
"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