Skip to content

Commit

Permalink
Excuded .fvm files from vscode search/watching
Browse files Browse the repository at this point in the history
  • Loading branch information
Luca Van Zelst committed Oct 13, 2023
1 parent 89d4c3a commit 1196a10
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
{
"dart.flutterSdkPath": ".fvm/flutter_sdk",
"dart.sdkPath": ".fvm/flutter_sdk/bin/cache/dart-sdk"
"dart.sdkPath": ".fvm/flutter_sdk/bin/cache/dart-sdk",
// Remove .fvm files from search
"search.exclude": {
"**/.fvm": true
},
// Remove from file watching
"files.watcherExclude": {
"**/.fvm": true
}
}

0 comments on commit 1196a10

Please sign in to comment.