Created
April 20, 2024 04:57
-
-
Save danjesus/b18988429dedc49f5e57e5d82a05945b to your computer and use it in GitHub Desktop.
Configurações customizadas do meu VSCODE
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
{ | |
"editor.inlineSuggest.enabled": true, | |
"workbench.colorTheme": "Min Dark", | |
"editor.minimap.enabled": false, | |
"editor.fontSize": 14, | |
"editor.lineHeight": 1.8, | |
"editor.renderLineHighlight": "none", | |
"workbench.editor.labelFormat": "short", | |
"explorer.compactFolders": true, | |
"editor.semanticHighlighting.enabled": false, | |
"symbols.hidesExplorerArrows": false, | |
"breadcrumbs.enabled": false, | |
"editor.scrollbar.horizontal": "hidden", | |
"editor.scrollbar.verticalScrollbarSize": 0, | |
"editor.scrollbar.verticalSliderSize": 0, | |
"editor.overviewRulerBorder": false, | |
"editor.scrollbar.vertical": "hidden", | |
"workbench.statusBar.visible": false, | |
"window.titleBarStyle": "native", | |
"apc.electron": { | |
"titleBarStyle": "hiddenInset", | |
"trafficLightPosition": { | |
"x": 11, | |
"y": 10 | |
} | |
}, | |
"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.activityBar": { | |
"position": "bottom", | |
"hideSettings": true, | |
"size": 48, | |
"itemMargin": 8, | |
"itemSize": 32 | |
}, | |
"explorer.fileNesting.patterns": { | |
"package.json": ".eslint*, prettier*, tsconfig*, vite*, pnpm-lock*, bun.lockb, nest*", | |
"tailwind.config.js": "tailwind.config*, postcss.config*", | |
".env.local": ".env*", | |
".env": ".env*" | |
}, | |
"workbench.activityBar.location": "hidden", | |
"workbench.layoutControl.enabled": false, | |
"explorer.fileNesting.enabled": true, | |
"files.exclude": { | |
"**\/CVS": true, | |
"**\/.DS_Store": true, | |
"**\/.hg": true, | |
"**\/.svn": true, | |
"**\/.git": true, | |
".vscode": true | |
}, | |
"window.commandCenter": false, | |
"git.openRepositoryInParentFolders": "always", | |
"terminal.integrated.fontSize": 14, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment