Skip to content

Instantly share code, notes, and snippets.

@jahirfiquitiva
Created May 11, 2024 22:32
Show Gist options
  • Save jahirfiquitiva/87d7aace89ef2e27ddaf470d53e50a1c to your computer and use it in GitHub Desktop.
Save jahirfiquitiva/87d7aace89ef2e27ddaf470d53e50a1c to your computer and use it in GitHub Desktop.
VS Code Settings
{
"breadcrumbs.enabled": false,
"editor.fontFamily": "'MonoLisa', 'Dank Mono', 'Operator Mono Lig', 'Operator Mono', Menlo, Monaco, 'Courier New', monospace",
"editor.fontWeight": "400",
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "explicit",
"editor.stickyScroll.enabled": true,
"explorer.sortOrder": "type",
"workbench.editor.enablePreview": false,
"workbench.editor.highlightModifiedTabs": true,
"workbench.layoutControl.enabled": false,
"workbench.list.horizontalScrolling": true,
"workbench.statusBar.visible": false,
"workbench.preferredLightColorTheme": "Pace Light+",
"workbench.preferredDarkColorTheme": "Pace Dark",
"workbench.preferredHighContrastLightColorTheme": "Pace Light++",
"workbench.preferredHighContrastColorTheme": "Pace Dark",
"workbench.activityBar.location": "hidden",
"workbench.panel.defaultLocation": "right",
"workbench.productIconTheme": "fluent-icons",
"workbench.iconTheme": "symbols",
"workbench.colorTheme": "Pace Light+",
"window.autoDetectColorScheme": true,
"window.nativeTabs": true,
"window.commandCenter": false,
"window.titleBarStyle": "native",
"apc.electron": {
"frame": false,
"titleBarStyle": "hidden"
},
"apc.activityBar": {
"position": "bottom",
"itemSize": 8
},
"apc.font.family": "MonoLisa Jahir",
"apc.monospace.font.family": "MonoLisa Jahir",
"apc.imports": ["/Users/jahir/dev/vscode/styles.css"],
"apc.listRow": {
"height": 30
}
}
/* Used in settings: "apc.imports": ["/Users/jahir/dev/vscode/styles.css"], */
[id='workbench.view.explorer'] .pane-body {
font-family: 'MonoLisa', 'Dank Mono', 'Operator Mono Lig', 'Operator Mono', Menlo, Monaco, 'Courier New', monospace !important;
font-size: 13px;
}
[id='workbench.view.explorer'] .monaco-icon-label {
font-family: 'MonoLisa', 'Dank Mono', 'Operator Mono Lig', 'Operator Mono', Menlo, Monaco, 'Courier New', monospace !important;
font-size: 13.5px;
}
[id='workbench.view.explorer'] .monaco-icon-label.folder-icon>.monaco-icon-label-container>.monaco-icon-name-container>.label-name {
font-family: 'MonoLisa', 'Dank Mono', 'Operator Mono Lig', 'Operator Mono', Menlo, Monaco, 'Courier New', monospace;
font-weight: 850;
}
.monaco-workbench .part.editor>.content .editor-group-container>.title .tabs-container>.tab .tab-label a {
color: var(--vscode-statusBar-foreground);
font-family: 'MonoLisa', 'Dank Mono', 'Operator Mono Lig', 'Operator Mono', Menlo, Monaco, 'Courier New', monospace !important;
font-size: 12px !important;
}
@hungify
Copy link

hungify commented May 12, 2024

Thanks, it is so clean.
We are the same 😃.
You have a light theme, whereas I have a dark theme.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment