Skip to content

Instantly share code, notes, and snippets.

@beiker
Created December 7, 2019 00:55
Show Gist options
  • Select an option

  • Save beiker/d74da7e3c3c09372719dc3685addb221 to your computer and use it in GitHub Desktop.

Select an option

Save beiker/d74da7e3c3c09372719dc3685addb221 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"window.zoomLevel": 0,
"editor.minimap.enabled": false,
"workbench.statusBar.visible": false,
"explorer.openEditors.visible": 0,
"workbench.activityBar.visible": false,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"workbench.editor.showTabs": false,
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
],
"editor.letterSpacing": 0.2,
"editor.lineHeight": 27,
"[typescript]": {
"editor.formatOnSave": true
},
"[javascript]": {
"editor.formatOnSave": true
},
"[css]": {
"editor.formatOnSave": true
},
"[html]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "vscode.html-language-features",
// "editor.rulers": [120],
// "editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"node_modules/": true
},
"workbench.iconTheme": "material-icon-theme",
"editor.multiCursorModifier": "ctrlCmd",
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"breadcrumbs.enabled": true,
"breadcrumbs.symbolPath": "off",
"workbench.startupEditor": "newUntitledFile",
"editor.quickSuggestionsDelay": 500,
"workbench.colorCustomizations": {
"gitDecoration.modifiedResourceForeground": "#FFE0B2",
"gitDecoration.untrackedResourceForeground": "#B2DFDB",
"list.activeSelectionBackground": "#2C5282",
"list.activeSelectionForeground": "#E2E8F0",
"list.inactiveSelectionBackground": "#2C5282",
"list.inactiveSelectionForeground": "#E2E8F0",
"list.hoverBackground": "#2C5282",
"list.hoverForeground": "#E2E8F0"
},
"material-icon-theme.opacity": 1,
"material-icon-theme.folders.theme": "specific",
"material-icon-theme.hidesExplorerArrows": false,
"material-icon-theme.activeIconPack": "angular_ngrx",
"material-icon-theme.folders.color": "#42a5f5",
"sync.gist": "395680c5e90155b6fc3846777dc7e234",
"html.format.wrapAttributes": "aligned-multiple",
"bracketPairColorizer.consecutivePairColors": [
["<", "</"],
["<", "/>"],
[
"Gold",
"Orchid",
"LightSkyBlue"
],
"Red"
],
"workbench.editor.centeredLayoutAutoResize": false,
"editor.renderControlCharacters": false,
"workbench.tree.indent": 16,
"sync.forceUpload": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment