Skip to content

Instantly share code, notes, and snippets.

@imroca
Created November 8, 2022 19:26
Show Gist options
  • Save imroca/9f7cb0daca684e13b476fbad2c87d30b to your computer and use it in GitHub Desktop.
Save imroca/9f7cb0daca684e13b476fbad2c87d30b to your computer and use it in GitHub Desktop.
Visual Studop Code - User Settings - Minimalist Config
{
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"breadcrumbs.enabled": false,
"breadcrumbs.filePath": "off",
"customizeUI.activityBar": "bottom",
"customizeUI.activityBarHideSettings": true,
"customizeUI.stylesheet": {
".decorationsOverviewRuler": "display: none;",
".tabs-and-actions-container .editor-actions": "display: none !important;",
".editor-group-container.empty": "-webkit-app-region: drag;",
".monaco-editor .scroll-decoration": "box-shadow: none;"
},
"customizeUI.titleBar": "inline",
"editor.accessibilitySupport": "off",
"editor.bracketPairColorization.enabled": false,
"editor.cursorBlinking": "smooth",
"editor.cursorStyle": "line-thin",
"editor.folding": false,
"editor.foldingHighlight": false,
"editor.fontFamily": "'Cascadia Code', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"editor.glyphMargin": false,
"editor.guides.bracketPairs": false,
"editor.guides.indentation": false,
"editor.lineHeight": 20,
"editor.lineNumbers": "off",
"editor.minimap.enabled": false,
"editor.scrollbar.horizontalScrollbarSize": 8,
"editor.scrollbar.verticalScrollbarSize": 8,
"editor.suggestSelection": "first",
"editor.tabSize": 2,
"editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-",
"editor.wordWrap": "off",
"emmet.includeLanguages": {
"css": "css",
"html": "html",
"javascript": "javascript"
},
"emmet.triggerExpansionOnTab": true,
"explorer.autoReveal": "focusNoScroll",
"explorer.confirmDelete": false,
"git.autofetch": true,
"git.confirmSync": false,
"helium-icon-theme.activeIconPack": "react",
"prettier.bracketSameLine": true,
"prettier.singleQuote": true,
"scm.diffDecorations": "none",
"security.workspace.trust.untrustedFiles": "open",
"terminal.explorerKind": "external",
"terminal.integrated.fontFamily": "Hack Nerd Font Mono",
"window.autoDetectColorScheme": true,
"window.newWindowDimensions": "inherit",
"window.openFoldersInNewWindow": "on",
"window.restoreWindows": "all",
"window.title": "${rootName}",
"window.titleBarStyle": "native",
"workbench.colorTheme": "GitHub Dark Default",
"workbench.editor.highlightModifiedTabs": false,
"workbench.editor.scrollToSwitchTabs": false,
"workbench.editor.untitled.hint": "hidden",
"workbench.iconTheme": "material-icon-theme",
"workbench.layoutControl.enabled": false,
"workbench.list.horizontalScrolling": true,
"workbench.list.openMode": "doubleClick",
"workbench.preferredDarkColorTheme": "GitHub Dark Default",
"workbench.preferredLightColorTheme": "GitHub Light Default",
"workbench.sideBar.location": "right",
"workbench.startupEditor": "none",
"workbench.tips.enabled": false,
"workbench.tree.indent": 16,
"workbench.tree.renderIndentGuides": "none",
"workbench.statusBar.visible": false,
"vsicons.dontShowNewVersionMessage": true,
"workbench.activityBar.visible": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment