Skip to content

Instantly share code, notes, and snippets.

@HamzaRahmani
Created December 11, 2023 01:06
Show Gist options
  • Select an option

  • Save HamzaRahmani/849205847929426d12cd14f164a054af to your computer and use it in GitHub Desktop.

Select an option

Save HamzaRahmani/849205847929426d12cd14f164a054af to your computer and use it in GitHub Desktop.
vscode - user settings
{
"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