Skip to content

Instantly share code, notes, and snippets.

@edilsonvilarinho
Created March 23, 2024 21:56
Show Gist options
  • Select an option

  • Save edilsonvilarinho/25d3f95df1fc7e175c3dd7cf571e257d to your computer and use it in GitHub Desktop.

Select an option

Save edilsonvilarinho/25d3f95df1fc7e175c3dd7cf571e257d to your computer and use it in GitHub Desktop.
settings vs code minimalista
{
"symbols.hidesExplorerArrows": false,
"window.commandCenter": false,
"security.workspace.trust.untrustedFiles": "newWindow",
"window.menuBarVisibility": "compact",
"window.titleBarStyle": "native",
"workbench.layoutControl.enabled": false,
"workbench.iconTheme": "symbols",
"workbench.colorTheme": "Min Dark",
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.labelFormat": "short",
"workbench.activityBar.location": "hidden",
"workbench.statusBar.visible": false,
"workbench.productIconTheme": "fluent-icons",
"editor.fontFamily": "JetBrains Mono",
"editor.minimap.enabled": false,
"editor.fontSize": 14,
"editor.lineHeight": 1.8,
"editor.tabSize": 2,
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"editor.rulers": [
80,
120
],
"editor.renderLineHighlight": "gutter",
"editor.semanticHighlighting.enabled": false,
"editor.fontLigatures": true,
"terminal.integrated.fontSize": 15,
"terminal.integrated.fontFamily": "HACK NF",
"terminal.integrated.fontWeightBold": "bold",
"terminal.external.windowsExec": "C:\\Program Files\\WindowsApps\\Microsoft.WindowsTerminal_1.19.10573.0_x64__8wekyb3d8bbwe\\WindowsTerminal.exe",
"explorer.compactFolders": false,
"breadcrumbs.enabled": false,
"apc.header": {
"height": 36
},
"apc.listRow": {
"height": 24
},
"apc.stylesheet": {
".title-label > h2": "display: none",
".editor-actions": "display: none",
".nosidebar .inline-tabs-placeholder": "width: 75px",
".pane-header": "padding: 0 8px",
".pane-body": "padding: 8px",
".split-view-view:first-child .pane-header": "display: none !important;",
".monaco-list-row": "border-radius: 4px;",
".monaco-workbench .monaco-list:not(.element-focused):focus:before": "display: none;"
},
"apc.font.family": "JetBrains Mono",
"apc.electron": {
"titleBarStyle": "hiddenInset",
"trafficLightPosition": {
"x": 11,
"y": 10
},
"frame": false
},
"explorer.sortOrder": "foldersNestsFiles",
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}.ts",
"tsconfig.json": "tsconfig.*.json",
".env.local": ".env*",
".env": ".env*",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb"
},
"files.exclude": {
"**\/CVS": true,
"**\/.DS_Store": true,
"**\/.hg": true,
"**\/.svn": true,
"**\/.git": true,
".vscode": true
},
"symbols.files.associations": {
"*.module.ts": "nest",
"*.guard.ts": "typescript",
"*.spec.ts": "ts-test",
"*.e2e-spec.ts": "ts-test",
"vitest.config.e2e.ts": "vite",
".env.example": "gear"
},
"files.associations": {
".env.*": "dotenv",
".prettierrc": "json",
"*.css": "css"
},
"gitlens.codeLens.authors.enabled": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment