Created
December 11, 2023 01:06
-
-
Save HamzaRahmani/849205847929426d12cd14f164a054af to your computer and use it in GitHub Desktop.
vscode - user settings
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
| { | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "git.enableSmartCommit": true, | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.formatOnSave": true, | |
| "editor.bracketPairColorization.enabled": true, | |
| "editor.guides.bracketPairs": "active", | |
| "editor.fontLigatures": true, | |
| "editor.tabSize": 2, | |
| "editor.suggest.snippetsPreventQuickSuggestion": true, | |
| // Color Theme and Syntax Highlights | |
| "workbench.colorTheme": "Dracula", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "editor.renderLineHighlight": "all", | |
| "workbench.colorCustomizations": { | |
| "editor.background": "#000000", | |
| "editor.selectionBackground": "#575656", | |
| "statusBar.background": "#1A1A1A", | |
| "statusBar.noFolderBackground": "#212121", | |
| "statusBar.debuggingBackground": "#263238", | |
| "terminal.background": "#000000" | |
| }, | |
| "go.addTags": { | |
| "promptForTags": true | |
| }, | |
| "gopls": { | |
| "ui.semanticTokens": true | |
| }, | |
| // "go.inlayHints.parameterNames": true, | |
| "go.inlayHints.compositeLiteralFields": true, | |
| "editor.tokenColorCustomizations": { | |
| "comments": "#90a4ae", | |
| "[Dracula]": { | |
| "textMateRules": [ | |
| { | |
| "scope": "source.go", | |
| "settings": { | |
| "foreground": "#ffffff" | |
| } | |
| } | |
| ] | |
| } | |
| }, | |
| "[go]": { | |
| "editor.defaultFormatter": "golang.go" | |
| } | |
| // "go.useCodeSnippetsOnFunctionSuggestWithoutType": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment