Skip to content

Instantly share code, notes, and snippets.

@john-dalmolin
Last active March 14, 2024 20:12
Show Gist options
  • Save john-dalmolin/41dcac4868b333c29d06f898f2a9f383 to your computer and use it in GitHub Desktop.
Save john-dalmolin/41dcac4868b333c29d06f898f2a9f383 to your computer and use it in GitHub Desktop.
My minimalist config for VSCode
{
"window.zoomLevel": 1,
"workbench.startupEditor": "newUntitledFile",
"javascript.suggest.autoImports": true,
"workbench.colorTheme": "Tokyo Darker Night",
"symbols.hidesExplorerArrows": false,
"workbench.iconTheme": "symbols",
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 16,
"editor.lineHeight": 1.8,
"editor.rulers": [80, 120],
"editor.renderLineHighlight": "gutter",
"editor.fontLigatures": true,
"editor.stickyScroll.enabled": false,
"workbench.editor.labelFormat": "short",
"explorer.compactFolders": false,
"editor.semanticHighlighting.enabled": false,
"breadcrumbs.enabled": false,
"workbench.activityBar.location": "hidden",
"editor.minimap.enabled": false,
"editor.scrollbar.horizontal": "hidden",
"editor.scrollbar.vertical": "auto",
"workbench.statusBar.visible": false,
"window.titleBarStyle": "native",
"files.autoSave": "afterDelay",
"apc.electron": {
"titleBarStyle": "hiddenInset",
"frame": false
},
"apc.header": {
"height": 36
},
"apc.listRow": {
"height": 24
},
"apc.font.family": "Inter",
"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: 6px",
".split-view-view:first-child .pane-header": "display: none !important;",
".monaco-list-row": "border-radius: 4px;",
".monaco-workbench .part.sidebar .title-actions .actions-container": "margin-left: -1.5rem;",
".monaco-workbench .monaco-list:not(.element-focused):focus:before": "display: none;"
},
"window.commandCenter": false,
"workbench.layoutControl.enabled": false,
"terminal.integrated.fontSize": 14,
"terminar.integrated.fontFamily": "JetBrainsMono Nerd Font",
"editor.tabSize": 4,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fastScrollSensitivity": 6,
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorWidth": 2,
"sonarlint.rules": {
"Web:S6845": {
"level": "off"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment