Skip to content

Instantly share code, notes, and snippets.

@vicenterusso
Created December 11, 2023 15:06
Show Gist options
  • Save vicenterusso/34894f3a4ab479588d19b3b38e62da1d to your computer and use it in GitHub Desktop.
Save vicenterusso/34894f3a4ab479588d19b3b38e62da1d to your computer and use it in GitHub Desktop.
My Current VSCode settings.json for flutter development with FVM
{
"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