Skip to content

Instantly share code, notes, and snippets.

@bencodezen
Last active November 29, 2022 11:12
Show Gist options
  • Save bencodezen/49f33096bedcb0ab0b088232104a546b to your computer and use it in GitHub Desktop.
Save bencodezen/49f33096bedcb0ab0b088232104a546b to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{ "lastUpload": "2022-05-09T00:37:11.339Z" }
{
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"window.newWindowDimensions": "inherit",
"editor.detectIndentation": true,
"editor.fontSize": 20,
"editor.wordWrap": "on",
"prettier.tabWidth": 2,
"prettier.trailingComma": "none",
"prettier.bracketSpacing": true,
"prettier.jsxBracketSameLine": false,
"prettier.arrowParens": "avoid",
"prettier.proseWrap": "preserve",
"prettier.ignorePath": "package.json",
"files.associations": {
"*.js": "javascriptreact",
"*.m5o": "json"
},
"workbench.startupEditor": "welcomePage",
"files.autoSave": "off",
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"[javascript]": {},
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"explorer.confirmDragAndDrop": false,
"gitlens.keymap": "chorded",
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.fontSize": 16,
"terminal.integrated.fontFamily": "'Operator Mono', 'FiraCode Nerd Font Mono'",
"prettier.disableLanguages": [],
"sync.gist": "49f33096bedcb0ab0b088232104a546b",
"sync.quietSync": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"sync.autoDownload": true,
"sync.autoUpload": true,
"sync.forceDownload": false,
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"gitlens.views.fileHistory.enabled": true,
"gitlens.views.lineHistory.enabled": true,
"cSpell.userWords": ["meltano", "uncompiled", "vuepress", "zuora"],
"emmet.includeLanguages": {
"vue": "html"
},
"emmet.showAbbreviationSuggestions": false,
"html.format.endWithNewline": true,
"editor.tabSize": 2,
"workbench.colorCustomizations": {
"[Ariake Dark]": {
"editor.background": "#1C2026"
}
},
"javascript.updateImportsOnFileMove.enabled": "always",
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnType": false,
"editor.minimap.enabled": false,
"workbench.statusBar.visible": false,
"liveshare.featureSet": "insiders",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"peacock.favoriteColors": [
{
"name": "Angular Red",
"value": "#b52e31"
},
{
"name": "Auth0 Orange",
"value": "#eb5424"
},
{
"name": "Azure Blue",
"value": "#007fff"
},
{
"name": "C# Purple",
"value": "#68217A"
},
{
"name": "Gatsby Purple",
"value": "#639"
},
{
"name": "Go Cyan",
"value": "#5dc9e2"
},
{
"name": "Java Blue-Gray",
"value": "#557c9b"
},
{
"name": "JavaScript Yellow",
"value": "#f9e64f"
},
{
"name": "Mandalorian Blue",
"value": "#1857a4"
},
{
"name": "Node Green",
"value": "#215732"
},
{
"name": "React Blue",
"value": "#00b3e6"
},
{
"name": "Something Different",
"value": "#832561"
},
{
"name": "Vue Green",
"value": "#42b883"
}
],
"diffEditor.ignoreTrimWhitespace": false,
"python.dataScience.ignoreVscodeTheme": true,
"prettier.jsxSingleQuote": true,
"prettier.singleQuote": true,
"workbench.sideBar.location": "right",
"workbench.editor.showTabs": true,
"gitlens.mode.active": "zen",
"prettier.semi": false,
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"security.workspace.trust.untrustedFiles": "open",
"editor.fontFamily": "'IBM Plex Mono', Menlo, 'Operator Mono', Monaco, 'Courier New', monospace",
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": false,
"markdown": false
},
"go.toolsManagement.autoUpdate": true,
"editor.tabCompletion": "on",
"github.copilot.autocomplete.enable": true,
"launch": {
"configurations": [],
"compounds": []
},
"scm.diffDecorations": "none",
"editor.cursorBlinking": "solid",
"editor.parameterHints.enabled": false,
"editor.suggestOnTriggerCharacters": false,
"explorer.decorations.colors": false,
"explorer.decorations.badges": false,
"workbench.editor.enablePreview": false,
"editor.accessibilitySupport": "off",
"mssql.connections": [
{
"server": "{{put-server-name-here}}",
"database": "{{put-database-name-here}}",
"user": "{{put-username-here}}",
"password": ""
}
],
"path-autocomplete.extensionOnImport": true,
"workbench.preferredDarkColorTheme": "Night Owl",
"workbench.colorTheme": "Night Owl",
"editor.formatOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment