Skip to content

Instantly share code, notes, and snippets.

@anastasiya29
Last active January 29, 2021 18:13
Show Gist options
  • Save anastasiya29/e0052fae61a4d351aab9f9ac02de4bbd to your computer and use it in GitHub Desktop.
Save anastasiya29/e0052fae61a4d351aab9f9ac02de4bbd to your computer and use it in GitHub Desktop.
VS Code settings
// File location on windows: %APPDATA%\Code\User\settings.json
// File location on Mac: $HOME/Library/Application Support/Code/User/settings.json
{
"editor.minimap.enabled": false,
"editor.renderWhitespace": "all",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.tabSize": 2,
"breadcrumbs.enabled": true,
"git.ignoreMissingGitWarning": true,
"explorer.confirmDragAndDrop": false,
"workbench.iconTheme": "helium-icon-theme",
"javascript.updateImportsOnFileMove.enabled": "always",
"cSpell.userWords": [
"Multisite",
"Sitecore's",
"datasource",
"enablement",
"hostnames",
"roadmap",
"sitecore"
],
"workbench.colorCustomizations": {
"activityBar.background": "#b23467",
"activityBar.activeBorder": "#7cd4b7",
"activityBar.border": "#c8e4db",
"activityBar.foreground": "#ffffff",
"activityBar.inactiveForeground": "#e495b2",
"activityBarBadge.background": "#7cd4b7",
"activityBarBadge.foreground": "#070808",
"editorCursor.foreground": "#b23467",
"editorWidget.background": "#ffebf2",
"editorWidget.foreground": "#b23467",
"editorWarning.foreground": "#ff0000",
"editorSuggestWidget.foreground": "#7cd4b7",
"editorHoverWidget.foreground": "#b23467",
"titleBar.activeBackground": "#b23467",
"titleBar.inactiveBackground": "#e495b2",
"titleBar.activeForeground": "#ffffff",
"titleBar.inactiveForeground": "#444444",
"statusBar.background": "#b23467",
"statusBarItem.hoverBackground": "#c4a0cc",
"statusBar.foreground": "#15202b",
"sideBar.background": "#f9d4e4",
"sideBar.border": "#b23467",
"sideBarSectionHeader.border": "#b23467",
"sideBarSectionHeader.background": "#b23467",
"sideBarSectionHeader.foreground": "#f9d4e4",
"sideBarTitle.foreground": "#333333",
"tab.inactiveBackground": "#f9d4e4",
"menu.background": "#abd8c9",
"menu.foreground": "#15202b",
"menubar.selectionBackground": "#abd8c9",
"menubar.selectionForeground": "#15202b",
"terminal.background": "#ffebf2",
"panel.background": "#ffebf2",
"panelTitle.inactiveForeground": "#abd8c9",
"panelTitle.activeForeground": "#b23467"
},
"workbench.sideBar.location": "left",
"explorer.confirmDelete": true,
"editor.multiCursorModifier": "ctrlCmd",
"files.associations": {
"*.js": "javascript"
},
"workbench.tree.indent": 18,
"workbench.tree.renderIndentGuides": "always",
"window.zoomLevel": 1,
"gitlens.codeLens.recentChange.enabled": false,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Snazzy Light",
"search.exclude": {
"**/node_modules": false
},
"bracket-pair-colorizer-2.colors": [
"#19a5a2",
"#7cd4b7",
"#6abeff"
],
"bracket-pair-colorizer-2.colorMode": "Consecutive",
"bracket-pair-colorizer-2.showBracketsInGutter": true,
"bracket-pair-colorizer-2.showHorizontalScopeLine": false,
"bracket-pair-colorizer-2.highlightActiveScope": true,
"bracket-pair-colorizer-2.scopeLineCSS": [
"borderStyle : solid",
"borderWidth : 3px",
"borderColor : #19a5a2",
"opacity: 0.8",
],
"terminal.integrated.scrollback": 5000,
"gitlens.gitCommands.skipConfirmations": [
"fetch:command",
"stash-push:command",
"switch:command",
"push:command"
],
/*
"git.timeline.showAuthor": false,
"gitlens.codeLens.authors.enabled": false
*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment