Skip to content

Instantly share code, notes, and snippets.

@prabhakhar
Created April 11, 2022 16:40
Show Gist options
  • Save prabhakhar/41b6c271af66e49849139e6ae122e5ba to your computer and use it in GitHub Desktop.
Save prabhakhar/41b6c271af66e49849139e6ae122e5ba to your computer and use it in GitHub Desktop.
VS Code Settings with Gruvbox
{
"workbench.startupEditor": "newUntitledFile",
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"editor.fontFamily": "'Operator Mono Lig', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"go.useLanguageServer": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true,
"editor.minimap.enabled": false,
"files.autoSave": "onFocusChange",
"files.exclude": {
"**/node_modules": true
},
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.fontSize": 13,
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"terminal.external.osxExec": "iterm2.app",
"terminal.integrated.fontFamily": "'Operator Mono Lig'",
"terminal.integrated.fontSize": 13,
"terminal.integrated.fontWeightBold": "normal",
"terminal.integrated.letterSpacing": 1,
"terminal.integrated.lineHeight": 1.1,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"workbench.colorCustomizations": {
"sideBar.border": "#282828",
"activityBar.border": "#282828",
"editorGroup.border": "#282828",
"tab.border": "#282828",
"tab.activeBackground": "#282828",
"editorGroupHeader.tabsBorder": "#282828",
"tab.activeBorder": "#4285F4",
"panel.border": "#282828"
},
"files.associations": {},
"editor.tokenColorCustomizations": {
"comments": "#808080"
},
"go.toolsManagement.autoUpdate": true,
"security.workspace.trust.untrustedFiles": "open",
"workbench.colorTheme": "Gruvbox Material Dark",
"go.testTimeout": "3000s",
"go.testTags": "-v -count=1",
// "editor.codeActionsOnSave": {
// "source.organizeImports": true
// },
"editor.formatOnSave": true,
"breadcrumbs.enabled": false,
"notebook.globalToolbarShowLabel": "never"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment