Skip to content

Instantly share code, notes, and snippets.

@fredgrott
Created June 11, 2021 12:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fredgrott/a0f09d11befcf2e1dcc5b9e40302c335 to your computer and use it in GitHub Desktop.
Save fredgrott/a0f09d11befcf2e1dcc5b9e40302c335 to your computer and use it in GitHub Desktop.
my vscode settings for dart and flutter app development
"settings": {
"debug.openDebug": "openOnDebugBreak",
"workbench.editor.showTabs": true,
"editor.minimap.enabled": false,
"editor.codeLens": false,
"workbench.activityBar.visible": true,
"editor.renderWhitespace": "all",
"editor.fontSize": 18,
"editor.lineHeight": 25,
"editor.letterSpacing": 0,
"terminal.integrated.fontSize": 18,
"terminal.integrated.lineHeight": 1.5,
"terminal.integrated.cursorBlinking": false,
"terminal.integrated.cursorStyle": "line",
"editor.emptySelectionClipboard": false,
"editor.quickSuggestionsDelay": 0,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"dart.flutterScreenshotPath":"screenshots",
"plantuml.diagramsRoot": "reports/docs/diagrams/src",
"plantuml.exportOutDir": "reports/docs/diagrams/out",
"plantuml.includepaths": ["reports/docs/diagrams/style","docs/diagrams/src"],
"better-comments.multilineComments": true,
"better-comments.highlightPlainText": false,
"better-comments.tags": [
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
],
"editor.tokenColorCustomizations": {
"[Tokyo Night Storm]": { // or "[Tokyo Night Storm]"
"textMateRules": [{
"scope": [
"comment",
"meta.var.expr storage.type",
"keyword.control.flow",
"keyword.control.return",
"meta.directive.vue punctuation.separator.key-value.html",
"meta.directive.vue entity.other.attribute-name.html",
"tag.decorator.js entity.name.tag.js",
"tag.decorator.js punctuation.definition.tag.js",
"storage.modifier"
],
"settings": {
"fontStyle": ""
}
}]
}
},// customizations via https://code.visualstudio.com/api/references/theme-color#integrated-terminal-colors
"workbench.colorCustomizations": {
"[Tokyo Night Storm]": { // or "[Tokyo Night Storm]"
"editorCodeLens.foreground": "#7982a9", // Preferred hex color
"activityBar.background": "#00AA00",
"contrastActiveBorder": "#414141",
"contrastBorder":"#515151",
"window.activeBorder": "#ff0000",
"window.inactiveBorder":"#0000ff",
"terminal.foreground" : "#00FD61",
"terminal.background" : "#383737",
}
},
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [80],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false
}
},
@fredgrott
Copy link
Author

github-gist-image-header

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment