Skip to content

Instantly share code, notes, and snippets.

@jyrkidn
Last active September 1, 2022 12:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jyrkidn/f9c7e4c754c7f74226c893ca8fe37bce to your computer and use it in GitHub Desktop.
Save jyrkidn/f9c7e4c754c7f74226c893ca8fe37bce to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{
"editor.accessibilitySupport": "off",
"editor.rulers": [80, 100, 120],
"window.newWindowDimensions": "offset",
"editor.inlineSuggest.enabled": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"diffEditor.renderSideBySide": false,
"editor.lineHeight": 32,
"files.exclude": {
"**/.git": false
},
"tabnine.experimentalAutoImports": true,
"window.titleBarStyle": "custom",
"tighten-lint.only": [],
"editor.gotoLocation.multipleDefinitions": "goto",
"workbench.activityBar.visible": true,
"workbench.editor.enablePreview": false,
"window.menuBarVisibility": "toggle",
"explorer.confirmDragAndDrop": false,
"security.workspace.trust.untrustedFiles": "open",
"tighten-lint.exec": "php8.1 ./vendor/bin/tlint",
"workbench.statusBar.visible": false,
"cSpell.userWords": [
"België",
"codedor",
"Fuchikoma",
"laravel",
"livewire",
"longtext",
"mixins",
"onelogin",
"repman",
"Sluggable",
"Spatie",
"upsert"
],
"telemetry.enableTelemetry": false,
"breadcrumbs.enabled": true,
"editor.snippetSuggestions": "top",
"editor.fontLigatures": true,
"workbench.colorTheme": "Snazzy Light",
"editor.gotoLocation.multipleTypeDefinitions": "goto",
"workbench.sideBar.location": "right",
"editor.find.addExtraSpaceOnTop": false,
"files.trimTrailingWhitespace": true,
"prettier.enableDebugLogs": true,
"editor.fontFamily": "'FiraCode Nerd Font Mono'",
"editor.formatOnSave": true,
"editor.minimap.enabled": false,
"workbench.iconTheme": null,
"workbench.startupEditor": "newUntitledFile",
"editor.selectionClipboard": false,
"editor.formatOnPaste": true,
"workbench.editor.untitled.hint": "hidden",
"githubIssues.queries": [
{
"label": "My Issues",
"query": "default"
},
{
"label": "Created Issues",
"query": "author:${user} state:open repo:${owner}/${repository} sort:created-desc"
}
],
"intelephense.environment.phpVersion": "8.1.0",
"git.confirmSync": false,
"editor.renderWhitespace": "all",
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"explorer.confirmDelete": false,
"prettier.singleQuote": true,
"prettier.requireConfig": true,
"terminal.integrated.defaultProfile.osx": "/bin/zsh",
"editor.experimental.stickyScroll.enabled": true,
"githubPullRequests.pullBranch": "never",
"git.mergeEditor": false,
"diffEditor.codeLens": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment