Skip to content

Instantly share code, notes, and snippets.

@hym3242
Last active May 14, 2023 10:57
Show Gist options
  • Save hym3242/a64311854bad5b608f63400ba004348a to your computer and use it in GitHub Desktop.
Save hym3242/a64311854bad5b608f63400ba004348a to your computer and use it in GitHub Desktop.
VS Code quality of life settings
{
//Also add a css rule: .minimap.slider-always [ border-left: 1px solid #3b3b3b; ]
"workbench.startupEditor": "none",
"editor.scrollbar.horizontal": "visible",
"editor.scrollbar.vertical": "visible",
"editor.mouseWheelScrollSensitivity": 0.25,
"editor.stickyScroll.enabled": true,
"editor.minimap.showSlider": "always",
"telemetry.telemetryLevel": "off",
"workbench.colorCustomizations": {
"tab.hoverBackground": "#1d1d1d",
"tab.activeBackground": "#000000",
"editorStickyScroll.background":"#393939",
"editorGroupHeader.border":"#3b3b3b",
"tab.activeBorder": "#fff",
"list.hoverBackground":"#363636",
"sideBar.border":"#373737",
"minimapSlider.background": "#88888855",
"minimapSlider.activeBackground": "#eeeeee55",
"minimapSlider.hoverBackground": "#bbbbbb55",
"scrollbarSlider.background": "#8888",
"scrollbarSlider.hoverBackground": "#bbb8",
"scrollbarSlider.activeBackground": "#fff8",
},
"editor.wordWrap": "on",
"workbench.reduceMotion": "on",
"json.schemas": [],
"workbench.colorTheme": "Default Dark+",
"workbench.list.mouseWheelScrollSensitivity": 0.25,
"terminal.integrated.mouseWheelScrollSensitivity": 0.25,
"editor.scrollBeyondLastLine": false,
"workbench.tree.renderIndentGuides": "always",
"workbench.tree.indent": 16,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment