Skip to content

Instantly share code, notes, and snippets.

@jairusjoer
Last active July 6, 2024 21:10
Show Gist options
  • Save jairusjoer/cca487e7adcdcfb6d4cabd859f578a1a to your computer and use it in GitHub Desktop.
Save jairusjoer/cca487e7adcdcfb6d4cabd859f578a1a to your computer and use it in GitHub Desktop.
My personal configuration for Visual Studio Code
{
"apc.font.family": "JetBrainsMono Nerd Font",
"apc.stylesheet": {
".editor-group-watermark": {
"white-space": "nowrap"
}
},
"breadcrumbs.enabled": false,
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.maxComputationTime": 0,
"editor.bracketPairColorization.enabled": false,
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": "on",
"editor.fontFamily": "JetBrainsMono Nerd Font",
"editor.fontLigatures": true,
"editor.fontSize": 12,
"editor.guides.indentation": false,
"editor.lineHeight": 1.5,
"editor.linkedEditing": true,
"editor.minimap.enabled": false,
"editor.renderWhitespace": "none",
"editor.rulers": [
80,
120
],
"editor.stickyScroll.enabled": true,
"explorer.compactFolders": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"html.format.indentHandlebars": true,
"html.format.indentInnerHtml": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"telemetry.telemetryLevel": "off",
"terminal.integrated.fontSize": 12,
"terminal.integrated.lineHeight": 1.25,
"typescript.updateImportsOnFileMove.enabled": "always",
"window.commandCenter": false,
"window.customTitleBarVisibility": "auto",
"window.dialogStyle": "custom",
"window.menuBarVisibility": "toggle",
"window.title": "${profileName}${separator}${rootName}${separator}${activeEditorShort}",
"window.titleBarStyle": "custom",
"window.titleSeparator": " • ",
"workbench.activityBar.location": "top",
"workbench.colorCustomizations": {
"button.separator": "#525053",
"editor.background": "#191919",
"editorGroup.border": "#222222",
"editorGroupHeader.tabsBackground": "#191919",
"editorGutter.background": "#191919",
"editorRuler.foreground": "#222222",
"editorStickyScroll.background": "#191919",
"panel.background": "#191919",
"sideBar.border": "#222222",
"statusBar.border": "#222222",
"tab.activeBackground": "#191919",
"tab.inactiveBackground": "#191919",
"terminal.background": "#191919",
"titleBar.border": "#222222"
},
"workbench.colorTheme": "Monokai Pro (Filter Spectrum)",
"workbench.iconTheme": "Monokai Pro (Filter Spectrum) Icons",
"workbench.layoutControl.enabled": false,
"workbench.layoutControl.type": "menu",
"workbench.startupEditor": "none",
"workbench.tree.indent": 20,
"workbench.tree.renderIndentGuides": "none"
}
@jairusjoer
Copy link
Author

jairusjoer commented Jun 10, 2024

This configuration requires the following extensions and font:

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