Skip to content

Instantly share code, notes, and snippets.

@VB10
Created April 10, 2022 13:53
Show Gist options
  • Save VB10/1270fec2c655e12ff6dbeca895215c8a to your computer and use it in GitHub Desktop.
Save VB10/1270fec2c655e12ff6dbeca895215c8a to your computer and use it in GitHub Desktop.
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "GitHub Dark",
"explorer.experimental.fileNesting.enabled": true,
"explorer.experimental.fileNesting.expand": false,
"explorer.experimental.fileNesting.patterns": {
"pubspec.yaml": ".flutter-plugins, .packages, .dart_tool, .flutter-plugins-dependencies, .metadata, .packages, pubspec.lock, build.yaml, analysis_options.yaml, all_lint_rules.yaml",
".gitignore": ".gitattributes, .gitmodules, .gitmessage, .mailmap, .git-blame*",
"readme.*": "authors, backers.md, changelog*, citation*, code_of_conduct.md, codeowners, contributing.md, contributors, copying, credits, governance.md, history.md, license*, maintainers, readme*, security.md, sponsors.md",
"*.dart": "$(capture).g.dart, $(capture).freezed.dart",
},
"[dart]": {
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [
80
],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": true
},
"editor.formatOnSave": true,
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[ ]",
"[x]"
],
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "enabled",
"editor.fontSize": 20,
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
"dart.debugExternalLibraries": true,
"dart.debugSdkLibraries": false,
"dart.lineLength": 120,
// "editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.associations": {
"*.json ": "jsonc"
},
"dartImport.fixOnSave": true,
"ruby.format": "prettier",
"dart.debugExternalPackageLibraries": true,
"explorer.confirmDragAndDrop": false,
"enableTelemetry": false,
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"redhat.telemetry.enabled": true,
"workbench.colorCustomizations": {
"tab.activeBorderTop": "#FFE81F"
},
"ShortcutMenuBar.indentLines": true,
"ShortcutMenuBar.userButton01Command": "",
"ShortcutMenuBar.startDebugging": true,
"ShortcutMenuBar.redo": true,
"bracketPairColorizer.depreciation-notice": false,
"window.zoomLevel": 1,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment