Created
January 2, 2023 12:09
-
-
Save robsonsilv4/5a3be2f848b07fef6f10f608205ca91b to your computer and use it in GitHub Desktop.
My VSCode Settings (Flutter, Django, Spell)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.startupEditor": "none", | |
// Editor | |
"editor.formatOnSave": true, | |
// Theme | |
"workbench.colorTheme": "One Dark Pro Darker", | |
"workbench.iconTheme": "material-icon-theme", | |
// Font | |
"editor.fontSize": 16, | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "Fira Code, 'monospace', monospace", | |
// Brackets | |
"editor.bracketPairColorization.enabled": true, | |
"editor.guides.bracketPairs": "active", | |
// Dart and Flutter | |
"[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, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": true | |
} | |
}, | |
"dart.previewFlutterUiGuides": true, | |
"dart.flutterSdkPath": ".fvm/flutter_sdk", | |
"dart.flutterSdkPaths": ["/home/robson/fvm/versions"], | |
"search.exclude": { | |
"**/.fvm": true | |
}, | |
"files.watcherExclude": { | |
"**/.fvm": true | |
}, | |
// Django | |
"emmet.includeLanguages": { | |
"django-html": "html" | |
}, | |
// Formatters | |
// JSON | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"cSpell.language": "en,pt", | |
"cSpell.enableFiletypes": ["dart"], | |
"cSpell.userWords": ["bools", "endtemplate", "mocktail", "robson"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment