Skip to content

Instantly share code, notes, and snippets.

@barelyhuman
Last active June 10, 2025 10:38
Show Gist options
  • Save barelyhuman/b6ace3e1cb61daeb785a2653fa0abe7b to your computer and use it in GitHub Desktop.
Save barelyhuman/b6ace3e1cb61daeb785a2653fa0abe7b to your computer and use it in GitHub Desktop.
vscode-minimal.json
{
"editor.quickSuggestionsDelay": 1000,
"editor.lightbulb.enabled": "off",
"editor.selectionHighlight": true,
"editor.occurrencesHighlight": "singleFile",
"editor.formatOnSave": true,
"editor.fontFamily": "HurmitNerdFont",
"editor.fontSize": 13.5,
"editor.formatOnPaste": false,
"editor.tabSize": 2,
"explorer.confirmDragAndDrop": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"prettier.singleQuote": true,
"workbench.fontAliasing": "antialiased",
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.focusRecentEditorAfterClose": false,
"workbench.colorTheme": "Sequoia Moonlight",
"window.zoomLevel": 0.5,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"typescript.updateImportsOnFileMove.enabled": "never",
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"breadcrumbs.enabled": false,
"editor.minimap.enabled": false,
"editor.renderWhitespace": "none",
"editor.renderLineHighlight": "none",
"editor.overviewRulerBorder": false,
"editor.hideCursorInOverviewRuler": true,
"editor.lineNumbers": "off",
"editor.folding": true,
"editor.glyphMargin": false,
"explorer.openEditors.visible": 1,
"workbench.editor.showTabs": "single",
"workbench.editor.showIcons": false,
"workbench.editor.tabCloseButton": "off",
"scm.diffDecorationsGutterVisibility": "hover",
"zenMode.fullScreen": false,
"workbench.statusBar.visible": true,
"extensions.ignoreRecommendations": false,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.sideBar.location": "right",
"editor.lineHeight": 24,
"editor.padding.top": 16,
"editor.padding.bottom": 16,
"window.titleBarStyle": "native",
"editor.guides.indentation": false,
"workbench.startupEditor": "none",
"terminal.integrated.shellIntegration.decorationsEnabled": "never",
"workbench.activityBar.location": "top",
"workbench.editor.tabActionCloseVisibility": false,
"window.commandCenter": false,
"github.copilot.chat.commitMessageGeneration.instructions": [
{
"text": "use commitlint standard, keep the subject line short and add descriptions if needed in a new line after a line break"
}
],
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false
},
"github.copilot.nextEditSuggestions.enabled": true
}
@barelyhuman
Copy link
Author

Extensions
Customize UI
Rosé Pine

Screenshot
Screenshot 2021-09-27 at 1 32 10 PM

@barelyhuman
Copy link
Author

barelyhuman commented Jul 10, 2022

Screenshot 2022-07-10 at 8 44 22 PM

same as above but with the colors changed

"workbench.colorCustomizations": {
    "sideBar.background": "#18181b",
    "sideBarSectionHeader.background": "#18181b",
    "editor.background":"#18181b",
    "titleBar.activeBackground":"#18181b",
    "panel.background":"#18181b",
    "dropdown.background":"#18181b",
    "menu.background":"#18181b",
    "titleBar.inactiveBackground":"#18181b",
    "input.background":"#18181b",
    "editorPane.background":"#18181b",
    "quickInput.background":"#252529",
    "scrollbarSlider.background":"#18181b",
    "scrollbarSlider.hoverBackground":"#252529",
    "dropdown.listBackground":"#252529",
    "editorSuggestWidget.background":"#252529",
    "editorOverviewRuler.background":"#252529"    
  }

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