Skip to content

Instantly share code, notes, and snippets.

@sana-ajani
Last active February 12, 2021 08:57
Show Gist options
  • Save sana-ajani/6e9b9b6fe96dc2e693582127c1083c41 to your computer and use it in GitHub Desktop.
Save sana-ajani/6e9b9b6fe96dc2e693582127c1083c41 to your computer and use it in GitHub Desktop.
VS Code Demo Settings
{
//----Demos----
"update.mode": "none",
"extensions.autoCheckUpdates": false,
"screencastMode.onlyKeyboardShortcuts": true,
//----Settings----
"workbench.settings.editor": "json",
//----Editing----
"editor.fontFamily": "'Cascadia Code', Monaco, Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
//"files.defaultLanguage": "${activeEditorLanguage}",
"emmet.triggerExpansionOnTab": true,
"editor.wordWrap": "on",
"diffEditor.wordWrap": "on",
//"editor.suggest.showStatusBar": true,
//"editor.suggest.insertMode":"insert",
"editor.links": true,
"editor.minimap.showSlider": "always",
"editor.renderIndentGuides": true,
"editor.renderWhitespace": "all",
"editor.smoothScrolling": true,
"editor.cursorBlinking": "smooth",
"editor.dragAndDrop": true,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 500,
"files.hotExit": "onExitAndWindowClose",
//"powermode.enabled": false,
//"powermode.presets": "flames",
//----Workbench----
"workbench.editor.closeOnFileDelete": false,
"workbench.editor.revealIfOpen": true,
"workbench.list.smoothScrolling": true,
"editor.suggestSelection": "first",
"breadcrumbs.enabled": true,
"window.openFilesInNewWindow": "off",
//"workbench.editor.pinnedTabSizing": "normal",
//"workbench.editor.wrapTabs":false,
//----Theme----
"workbench.colorTheme": "SynthWave '84",
"workbench.colorCustomizations": {
"[SynthWave '84]": {
"editorIndentGuide.background": "#ddd2d29c",
"debugToolBar.background": "#4d3268",
"tab.border": "#a58fa74d",
"tab.activeBackground": "#8b4488a6",
//"tab.lastPinnedBorder": "#cdc724"
},
},
//----Debug----
"debug.inlineValues": true,
"debug.showInStatusBar": "always",
"debug.toolBarLocation": "floating",
//----Git and GitHub----
"git.enableSmartCommit": true,
"git.autofetch": true,
//----Terminal----
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.fontFamily": "monospace",
"terminal.integrated.scrollback": 10000,
//----Typescript----
"typescript.updateImportsOnFileMove.enabled": "always",
//----Other----
"window.zoomLevel": 2,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment