Skip to content

Instantly share code, notes, and snippets.

@JeanCremonezzi
Last active January 19, 2024 04:26
Show Gist options
  • Save JeanCremonezzi/0c26b859487bc6d79550bb88e8e8be14 to your computer and use it in GitHub Desktop.
Save JeanCremonezzi/0c26b859487bc6d79550bb88e8e8be14 to your computer and use it in GitHub Desktop.
VSCODE SETTINGS
Apc Customize UI++
https://marketplace.visualstudio.com/items?itemName=drcika.apc-extension
CodeSnap
https://marketplace.visualstudio.com/items?itemName=adpyke.codesnap
Database Client
https://marketplace.visualstudio.com/items?itemName=cweijan.vscode-database-client2
ES7+ React/Redux/React-Native snippets
https://marketplace.visualstudio.com/items?itemName=dsznajder.es7-react-js-snippets
Material Product Icons
https://marketplace.visualstudio.com/items?itemName=PKief.material-product-icons
Min Theme
https://marketplace.visualstudio.com/items?itemName=miguelsolorio.min-theme
Symbols
https://marketplace.visualstudio.com/items?itemName=miguelsolorio.symbols
{
"window.zoomLevel": 0.3,
"symbols.hidesExplorerArrows": false,
"explorer.compactFolders": false,
"workbench.colorTheme": "Min Dark",
"workbench.iconTheme": "symbols",
"editor.fontLigatures": true,
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 16,
"editor.lineHeight": 1.4,
"workbench.startupEditor": "readme",
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"editor.semanticHighlighting.enabled": false,
"breadcrumbs.enabled": false,
"workbench.activityBar.location": "hidden",
"editor.minimap.enabled": false,
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"editor.scrollbar.verticalScrollbarSize": 0,
"workbench.statusBar.visible": false,
"workbench.sideBar.location": "right",
"window.commandCenter": false,
"workbench.layoutControl.enabled": false,
"window.menuBarVisibility": "compact",
"workbench.tree.renderIndentGuides": "none",
"window.titleBarStyle": "native",
"extensions.ignoreRecommendations": true,
"explorer.fileNesting.enabled": true,
"editor.tabSize": 3,
"workbench.productIconTheme": "material-product-icons",
"explorer.fileNesting.patterns": {
"package.json": ".eslint*, prettier*, tsconfig*, vite*, pnpm-lock*, bun.lockb, nest*",
".env.local": ".env*",
".env": ".env*"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"files.exclude": {
"node_modules": true
},
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"workbench.colorCustomizations": {
"editor.lineHighlightBackground": "#05050575",
"editor.lineHighlightBorder": "#00000000",
// TERMINAL
"terminal.background": "#141313",
"terminal.foreground": "#D9D8D8",
"terminalCursor.background": "#D9D8D8",
"terminalCursor.foreground": "#D9D8D8",
"terminal.ansiBlack": "#141313",
"terminal.ansiBlue": "#009DDC",
"terminal.ansiBrightBlack": "#737171",
"terminal.ansiBrightBlue": "#009DDC",
"terminal.ansiBrightCyan": "#85CEBC",
"terminal.ansiBrightGreen": "#00853E",
"terminal.ansiBrightMagenta": "#98005D",
"terminal.ansiBrightRed": "#EE2E24",
"terminal.ansiBrightWhite": "#FFFFFF",
"terminal.ansiBrightYellow": "#FFD204",
"terminal.ansiCyan": "#85CEBC",
"terminal.ansiGreen": "#00853E",
"terminal.ansiMagenta": "#98005D",
"terminal.ansiRed": "#EE2E24",
"terminal.ansiWhite": "#D9D8D8",
"terminal.ansiYellow": "#FFD204"
},
"apc.electron": {
"frame": false
},
"apc.header": {
"height": 36
},
"apc.font.family": "JetBrains Mono",
"apc.stylesheet": {
".title-label > h2": "display: none",
".editor-actions": "display: none",
".pane-body": "padding: 16px 18px",
".monaco-list-row": "border-radius: 32px; outline: none !important",
".monaco-workbench .monaco-list:not(.element-focused):focus:before": "display: none;",
".tab": "border-radius: 8px 8px 0 0; border-bottom: 0",
".tab.active": "background: #05050575 !important",
},
"apc.listRow": {
"height": 32
},
"window.density.editorTabHeight": "compact",
"codesnap.backgroundColor": "#444444",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment