Skip to content

Instantly share code, notes, and snippets.

@denisfloyd
Last active January 24, 2024 10:22
Show Gist options
  • Save denisfloyd/1c74b4f0b074e033f5178100539222dc to your computer and use it in GitHub Desktop.
Save denisfloyd/1c74b4f0b074e033f5178100539222dc to your computer and use it in GitHub Desktop.
Vscode Settings
{
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": { "javascript": "javascriptreact" },
"editor.minimap.enabled": false,
"editor.tabSize": 2,
"editor.lineHeight": 26,
"editor.fontFamily": "'Cascadia Code', Consolas, 'Courier New', monospace",
"editor.fontSize": 15,
"editor.fontLigatures": "'calt', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'zero', 'onum'",
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.renderLineHighlight": "gutter",
"editor.parameterHints.enabled": false,
"editor.inlineSuggest.enabled": true,
"editor.formatOnSaveMode": "modifications",
"editor.formatOnSave": true,
"editor.rulers": [
100,
100
],
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"meta.function-call",
"keyword.control.export",
"keyword.control.default",
"variable.argument.css"
],
"settings": {
"fontStyle": "italic",
},
},
{
"scope": [
"entity.name.tag",
"support.class.component"
],
"settings": {
"fontStyle": "",
}
}
]
},
// "editor.fontSize": 13,
// "editor.lineHeight": 22,
// "editor.fontFamily": "Fira Code",
// "editor.fontLigatures": true,
// "editor.fontLigatures": "'calt', 'ss01'",
"explorer.compactFolders": false,
"explorer.enableDragAndDrop": false,
"explorer.confirmDelete": false,
"extensions.ignoreRecommendations": true,
"workbench.colorTheme": "Omni",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"workbench.productIconTheme": "fluent-icons",
"workbench.editor.labelFormat": "default",
"workbench.editor.highlightModifiedTabs": true,
"breadcrumbs.enabled": true,
"breadcrumbs.showBooleans": false,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.suggest.autoImports": true,
"typescript.updateImportsOnFileMove.enabled": "never",
"typescript.inlayHints.parameterNames.enabled": "none",
"git.enableSmartCommit": true,
"git.confirmSync": false,
"git.autofetch": true,
"material-icon-theme.folders.associations": {
"infra": "app",
"entities": "class",
"schemas": "class",
"typeorm": "database",
"repositories": "mappings",
"http": "container",
"migrations": "tools",
"modules": "components",
"implementations": "core",
"dtos": "typescript",
"fakes": "mock",
"enums": "resource",
"MailProvider": "mail",
"StorageProvider": "database",
".turbo": "vercel"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune"
},
"terminal.integrated.fontFamily": "Cascadia Code PL",
"terminal.integrated.fontSize": 14,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.lineHeight": 1.1,
"terminal.integrated.defaultProfile.osx": "zsh",
"security.workspace.trust.untrustedFiles": "open",
// "github.copilot.enable": {
// "*": true,
// "yaml": true,
// "plaintext": true,
// "markdown": true,
// "typescript": true
// },
// "tabnine.experimentalAutoImports": true,
// "sync.gist": "0a6d405aa1522b2dd0477550bb7fd74e",
// "liveServer.settings.donotShowInfoMsg": true,
"gitlens.gitCommands.skipConfirmations": [
"fetch:command",
"stash-push:command",
"switch:command",
"push:command",
"pull:command"
],
"[javascript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
}
},
"[typescript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"tailwindCSS.experimental.classRegex": [
["tv\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"]
],
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": false,
"scminput": false
},
"diffEditor.ignoreTrimWhitespace": false,
"workbench.activityBar.location": "top",
"[html][javascript][javascriptreact][typescript][typescriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
}
},
"playwright.reuseBrowser": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment