Skip to content

Instantly share code, notes, and snippets.

@Luisgustavom1
Last active December 3, 2023 18:23
Show Gist options
  • Save Luisgustavom1/c5e398ad4848ef18f0350d7b42e79cd0 to your computer and use it in GitHub Desktop.
Save Luisgustavom1/c5e398ad4848ef18f0350d7b42e79cd0 to your computer and use it in GitHub Desktop.
My VSCode settings
{
"explorer.confirmDragAndDrop": true,
"diffEditor.wordWrap": "on",
"editor.fontSize": 18,
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"launch": {
"configurations": []
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll": true
},
"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"
},
"terminal.integrated.copyOnSelection": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.minimap.enabled": false,
"workbench.startupEditor": "none",
"editor.tabSize": 2,
"terminal.integrated.defaultProfile.linux": "zsh",
"workbench.iconTheme": "material-icon-theme",
"files.associations": {
"*.tsx": "typescriptreact"
},
"workbench.colorTheme": "poimandres",
"glassit.alpha": 215,
"workbench.sideBar.location": "right",
"prettier.requireConfig": true,
"zig.zigPath": "",
"zig.zls.enabled": true,
"zig.zls.path": "zig-path",
"editor.formatOnSave": true,
"[go]": {
"editor.defaultFormatter": "golang.go",
},
"gopls": {
"ui.semanticTokens": true
},
"window.zoomLevel": -2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment