Skip to content

Instantly share code, notes, and snippets.

@barelyhuman
Last active October 4, 2023 09:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • 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.suggestOnTriggerCharacters": false,
"editor.lightbulb.enabled": false,
"editor.selectionHighlight": true,
"editor.occurrencesHighlight": true,
"editor.formatOnSave": true,
"editor.fontFamily": "Hermit",
"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.focusRecentEditorAfterClose": false,
"workbench.colorTheme": "Rosé Pine",
"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": false,
"editor.glyphMargin": false,
"explorer.openEditors.visible": 1,
"workbench.editor.showTabs": false,
"workbench.activityBar.visible": false,
"workbench.editor.showIcons": false,
"workbench.editor.tabCloseButton": "off",
"scm.diffDecorationsGutterVisibility": "hover",
"zenMode.fullScreen": false,
"workbench.statusBar.visible": false,
"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",
"apc.electron": {
"titleBarStyle": "hiddenInset",
"trafficLightPosition": {
"x": 8,
"y": 10
}
},
"apc.header": {
"height": 34,
"fontSize": 14
},
"apc.listRow": {
"height": 21,
"fontSize": 13
},
"editor.guides.indentation": false,
"workbench.startupEditor": "none",
"terminal.integrated.shellIntegration.decorationsEnabled": "never"
}
@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