Created
December 11, 2023 15:06
-
-
Save vicenterusso/34894f3a4ab479588d19b3b38e62da1d to your computer and use it in GitHub Desktop.
My Current VSCode settings.json for flutter development with FVM
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
{ | |
"dart.sdkPath": ".fvm/flutter_sdk", | |
"dart.flutterSdkPath": ".fvm/flutter_sdk", | |
// Remove .fvm files from search | |
"search.exclude": { | |
"**/.fvm": true | |
}, | |
// Remove from file watching | |
"files.watcherExclude": { | |
"**/.fvm": true | |
}, | |
"editor.wordWrapColumn": 150, | |
"vue.codeActions.enabled": false, | |
"cmake.configureOnOpen": false, | |
"dart.lineLength": 200, | |
"[dart]": { | |
"editor.formatOnSave": true, | |
"editor.formatOnType": true, | |
"editor.rulers": [ | |
200 | |
], | |
"editor.wordWrapColumn": 200, | |
"editor.selectionHighlight": false, | |
"editor.suggestSelection": "first", | |
"editor.tabCompletion": "onlySnippets", | |
"editor.wordBasedSuggestions": false, | |
"editor.suggest.snippetsPreventQuickSuggestions": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment