Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pozymasika/31026e9e197cee06dd59fc4474c217f8 to your computer and use it in GitHub Desktop.
Save pozymasika/31026e9e197cee06dd59fc4474c217f8 to your computer and use it in GitHub Desktop.
{
"workbench.colorTheme": "Night Owl",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.fontSize": 18,
"editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"extensions.ignoreRecommendations": true,
"editor.inlineSuggest.enabled": true,
"workbench.iconTheme": "vscode-icons",
"svelte.enable-ts-plugin": true,
"editor.formatOnType": true,
"[sql]": {
"editor.defaultFormatter": "adpyke.vscode-sql-formatter"
},
"vsicons.dontShowNewVersionMessage": true,
"editor.minimap.enabled": false,
"editor.stickyScroll.enabled": true,
"svelte.plugin.svelte.note-new-transformation": false,
"liveServer.settings.donotShowInfoMsg": true,
"editor.wordWrapColumn": 120,
"prettier.singleAttributePerLine": true,
"gitlens.codeLens.enabled": false,
"gitlens.currentLine.enabled": false,
"github.copilot.enable": {
"*": true,
"plaintext": true,
"markdown": true,
"scminput": false,
"yaml": true,
"typescript": true
},
"gitlens.blame.toggleMode": "window",
"html.format.wrapLineLength": 80,
"editor.indentSize": "tabSize",
"window.zoomLevel": -1,
"workbench.sideBar.location": "right",
"explorer.confirmDragAndDrop": false,
"editor.wordWrap": "bounded",
"workbench.editor.customLabels.patterns": {
"**/app/**/page.jsx": "${dirname} - Page",
"**/app/**/layout.jsx": "${dirname} - Layout",
"**/app/**/*id*/layout.jsx": "${dirname(1)} - ID Layout",
"**/app/**/*id*/page.jsx": "${dirname(1)} - ID Page",
"**/app/**/*id*/route.js": "${dirname(1)} - ID Route",
"**/app/**/route.js": "${dirname} - Route"
},
"eslint.enable": false,
"cursor.cpp.disabledLanguages": [
"scminput"
],
"prisma.showPrismaDataPlatformNotification": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment