Skip to content

Instantly share code, notes, and snippets.

@luzeduardo
Created July 2, 2020 10:21
Show Gist options
  • Save luzeduardo/8acb72ea95399d502567e260dde2ef6c to your computer and use it in GitHub Desktop.
Save luzeduardo/8acb72ea95399d502567e260dde2ef6c to your computer and use it in GitHub Desktop.
{
"[javascript]": {
"editor.tabSize": 2,
},
"[json]": {
"editor.tabSize": 2
},
"[css]": {
"editor.tabSize": 4
},
"[html]": {
"editor.tabSize": 2
},
"[scss]": {
"editor.tabSize": 2
},
"emojisense.languages": {
"markdown": true,
"javascript": true,
"html": true,
"git-commit": true,
"plaintext": true,
"json": true,
"go": true
},
"editor.tabSize": 2,
"window.zoomLevel": 1,
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 16,
"editor.fontWeight": "600",
"editor.letterSpacing": 1.3,
"editor.lineHeight": 22,
"editor.fontLigatures": true,
"editor.tabCompletion": "on",
"dart.openDevTools": "flutter",
"explorer.confirmDragAndDrop": false,
"editor.renderWhitespace": "all",
"editor.renderControlCharacters": false,
"files.trimTrailingWhitespace": true,
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.fontWeightBold": "normal",
"terminal.integrated.automationShell.osx": "",
"terminal.integrated.fontFamily": "Monaco",
"terminal.integrated.fontSize": 11,
"terminal.integrated.letterSpacing": 1,
"terminal.integrated.lineHeight": 1,
"debug.console.closeOnEnd": true,
"go.autocompleteUnimportedPackages": true,
"go.testTimeout": "30s",
"go.useLanguageServer": true,
"[go]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll.eslint": true
},
// Optional: Disable snippets, as they conflict with completion ranking.
"editor.snippetSuggestions": "none",
},
"[go.mod]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
},
},
"gopls": {
// Add parameter placeholders when completing a function.
"usePlaceholders": true,
// If true, enable additional analyses with staticcheck.
// Warning: This will significantly increase memory usage.
"staticcheck": false,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment