Skip to content

Instantly share code, notes, and snippets.

@cirops
Forked from diego3g/settings.json
Last active June 30, 2024 02:43
Show Gist options
  • Save cirops/53309f18cb1b1cf775ba1fa88dc2966b to your computer and use it in GitHub Desktop.
Save cirops/53309f18cb1b1cf775ba1fa88dc2966b to your computer and use it in GitHub Desktop.
VSCode Settings (Updated)
{
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 16,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.rulers": [80, 120],
"extensions.ignoreRecommendations": true,
"typescript.tsserver.log": "off",
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
"*.tsx": "typescriptreact",
".env.*": "dotenv",
".prettierrc": "json"
},
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "gutter",
"material-icon-theme.languages.associations": {
"dotenv": "tune"
},
"typescript.updateImportsOnFileMove.enabled": "never",
"material-icon-theme.files.associations": {
"tsconfig.json": "tune",
"*.webpack.js": "webpack",
"*.proto": "3d",
"ormconfig.json": "database"
},
"material-icon-theme.activeIconPack": "nest",
"editor.suggestSelection": "first",
"explorer.confirmDelete": false,
"terminal.integrated.showExitAlert": false,
"[prisma]": {
"editor.formatOnSave": true
},
"typescript.suggest.autoImports": true,
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"workbench.editor.labelFormat": "short",
"editor.fontLigatures": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"material-icon-theme.folders.associations": {
"adapters": "contract",
"grpc": "pipe",
"kube": "kubernetes",
"main": "lib",
"websockets": "pipe",
"implementations": "core",
"protos": "pipe",
"entities": "class",
"kafka": "pipe",
"use-cases": "functions",
"migrations": "tools",
"schemas": "class",
"useCases": "functions",
"eslint-config": "tools",
"typeorm": "database",
"_shared": "shared",
"mappers": "meta",
"fakes": "mock",
"modules": "components",
"subscribers": "messages",
"domain": "class",
"protocols": "contract",
"infra": "app",
"view-models": "views",
"presentation": "template",
"dtos": "typescript",
"http": "container",
"providers": "include",
"factories": "class",
"repositories": "mappings"
},
"editor.acceptSuggestionOnCommitCharacter": false,
"explorer.compactFolders": false,
"git.enableSmartCommit": true,
"editor.accessibilitySupport": "off",
"explorer.confirmDragAndDrop": false,
"terminal.integrated.fontSize": 14,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.semanticHighlighting.enabled": false,
"breadcrumbs.enabled": true,
"workbench.productIconTheme": "fluent-icons",
"editor.fontFamily": "'JetBrains Mono', Consolas, 'Courier New', monospace",
"editor.tabSize": 2,
"security.workspace.trust.untrustedFiles": "newWindow",
"files.exclude": {
"**/CVS": true,
"**/.DS_Store": true,
"**/.hg": true,
"**/.svn": true,
"**/.git": true
},
"workbench.iconTheme": "symbols",
"workbench.colorTheme": "Dracula",
"editor.wordWrap": "on",
"editor.unicodeHighlight.nonBasicASCII": false,
"workbench.editor.titleScrollbarSizing": "large",
"[python]": {
"editor.formatOnType": true
},
"files.eol": "\n",
"terminal.integrated.defaultProfile.windows": "Cmder",
"editor.guides.bracketPairs": true,
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [80],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": "off"
},
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
},
"Cmder": {
"path": "C:\\WINDOWS\\System32\\cmd.exe",
"args": ["/K", "C:\\cmder\\vendor\\bin\\vscode_init.cmd"]
}
},
"symbols.hidesExplorerArrows": false,
"symbols.files.associations": {
"*.e2e-spec.ts": "ts-test"
},
"[handlebars]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": false,
"scminput": false
},
"dotnet.codeLens.enableReferencesCodeLens": false,
"workbench.settings.applyToAllProfiles": [],
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"workbench.activityBar.location": "hidden",
"github.copilot.editor.enableAutoCompletions": true,
"diffEditor.ignoreTrimWhitespace": false,
"go.toolsManagement.autoUpdate": true,
"editor.lineHeight": 30
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment