Skip to content

Instantly share code, notes, and snippets.

@VB10
Last active December 22, 2024 23:11
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.

Revisions

  1. VB10 revised this gist Dec 22, 2024. 1 changed file with 14 additions and 57 deletions.
    71 changes: 14 additions & 57 deletions settings.json
    Original file line number Diff line number Diff line change
    @@ -1,74 +1,31 @@
    {
    "workbench.iconTheme": "material-icon-theme",
    "workbench.colorTheme": "GitHub Dark",
    "explorer.experimental.fileNesting.enabled": true,
    "explorer.experimental.fileNesting.expand": false,
    "explorer.experimental.fileNesting.patterns": {
    "dart.lineLength": 80,
    "docwriter.hotkey.mac": "⌥ + .",
    "editor.formatOnSave": true,
    "editor.formatOnPaste": true,
    "editor.fontFamily": "JetBrains Mono",
    "explorer.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": "$(capture).g.dart, $(capture).freezed.dart,$(capture).gr.dart"
    },
    "[dart]": {
    "editor.codeActionsOnSave": {
    "source.fixAll": true
    },
    "editor.formatOnSave": true,
    "editor.formatOnType": true,
    "editor.rulers": [
    80
    ],
    "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"
    "editor.wordBasedSuggestions": "matchingDocuments",
    "editor.codeActionsOnSave": {
    "source.fixAll": "explicit",
    "source.organizeImports": "always"
    }
    },
    "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,
    "editor.inlineSuggest.enabled": true
    }
  2. VB10 renamed this gist Dec 22, 2024. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  3. VB10 created this gist Apr 10, 2022.
    74 changes: 74 additions & 0 deletions vs_code_dart_settings.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,74 @@
    {
    "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,
    }