Skip to content

Instantly share code, notes, and snippets.

@arbaouimehdi
Last active October 1, 2024 11:16
Show Gist options
  • Save arbaouimehdi/29d93d3a22cd73d7cb180c6ee7f73862 to your computer and use it in GitHub Desktop.
Save arbaouimehdi/29d93d3a22cd73d7cb180c6ee7f73862 to your computer and use it in GitHub Desktop.
My Video recording VSCode settings setup
{
"stylelint.enable": false,
"css.validate": false,
"scss.validate": false,
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": "never"
},
"workbench.statusBar.visible": false,
"workbench.editor.showTabs": "none",
"workbench.activityBar.location": "hidden",
"html.suggest.html5": false,
"emmet.showExpandedAbbreviation": "never",
"window.zoomLevel": 4.4,
"breadcrumbs.enabled": false,
"editor.minimap.enabled": false,
"editor.suggest.showProperties": false,
"css.lint.emptyRules": "ignore",
"scss.lint.emptyRules": "ignore",
"css.lint.validProperties": [],
"scss.lint.validProperties": [],
"less.lint.validProperties": [],
"[css]": {
"editor.quickSuggestions": false,
"editor.hover.enabled": false,
"editor.parameterHints.enabled": false,
"editor.suggestOnTriggerCharacters": false,
"editor.lineNumbers": "off",
"editor.folding": false,
"editor.glyphMargin": false,
"editor.guides.indentation": false,
"editor.renderLineHighlight": "none"
}
}
@arbaouimehdi
Copy link
Author

Actions Done:

  • Disable style validation for CSS.
  • Prevent stylelint fixes on save.
  • Hide status bar, tabs, activity bar.
  • Disable HTML5 suggestions and Emmet.
  • Set zoom to 4.4.
  • Disable breadcrumbs, minimap, suggestions.
  • Ignore empty CSS rule warnings.
  • Disable quick suggestions, tooltips, hints in CSS.
  • Turn off line numbers, folding, glyphs, guides in CSS.
  • Disable line highlighting in CSS.

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