Skip to content

Instantly share code, notes, and snippets.

@rukasudev
Last active May 14, 2023 14:11
Show Gist options
  • Save rukasudev/caa7a880d315063db931f7a0e10ee6a2 to your computer and use it in GitHub Desktop.
Save rukasudev/caa7a880d315063db931f7a0e10ee6a2 to your computer and use it in GitHub Desktop.
vscode settings πŸ“Œ
{
// languages
"[go]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.defaultFormatter": "golang.go",
"editor.formatOnSave": false,
"editor.formatOnSaveMode": "file",
"editor.insertSpaces": false,
"editor.suggest.snippetsPreventQuickSuggestions": false
},
"go.buildFlags": ["-tags=integration"],
"go.goroot": "/usr/local/Cellar/go@1.17/1.17.13/libexec",
"go.testTags": "integration",
"go.toolsManagement.autoUpdate": true,
"gopls.env": {
"GOFLAGS": "-tags=test"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"python.formatting.provider": "black",
"[yaml]": {
"editor.autoIndent": "advanced"
},
// editor
"editor.suggestSelection": "first",
"editor.accessibilitySupport": "off",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"workbench.productIconTheme": "fluent-icons",
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.fontWeight": "550",
"editor.mouseWheelZoom": false,
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "gutter",
"editor.lineHeight": 26,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.semanticHighlighting.enabled": false,
"editor.tabSize": 2,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.organizeImports": true
},
"diffEditor.ignoreTrimWhitespace": false,
// files
"files.associations": {
".env.*": "dotenv",
".prettierrc": "json"
},
"explorer.confirmDelete": false,
"files.autoSave": "onFocusChange",
"files.exclude": {
"**/*.pyc": {
"when": "$(basename).py"
},
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.svn": true,
"**/CVS": true,
"**/__pycache__": true
},
"git.ignoreMissingGitWarning": true,
"git.path": "/usr/local/bin/git",
"gitlens.advanced.messages": {
"suppressGitMissingWarning": true
},
// workspace
"window.zoomLevel": 1,
"security.workspace.trust.untrustedFiles": "open",
// explorer
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
// workbench
"workbench.editor.labelFormat": "short",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "GitHub Dark",
"workbench.editor.enablePreview": true,
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook",
"*.xls": "default"
},
// terminal
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.fontSize": 14,
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
// extensions
"extensions.ignoreRecommendations": true,
"vscode-pets.petColor": "black",
"vscode-pets.petSize": "medium",
"vscode-pets.position": "explorer",
"material-icon-theme.languages.associations": {
"dotenv": "tune"
},
"material-icon-theme.folders.associations": {
"adapters": "contract",
"grpc": "pipe",
"kube": "kubernetes",
"main": "lib",
"websockets": "pipe",
"implementations": "core",
"venv": "core",
"protos": "pipe",
"entities": "class",
"kafka": "pipe",
"cogs": "functions",
"migrations": "tools",
"schemas": "class",
"moderations": "tools",
"eslint-config": "tools",
"typeorm": "database",
"notifications": "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"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment