-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
7524 lines (5631 loc) · 373 KB
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
// Display reference counts above top level blocks and attributes.
"terraform.codelens.referenceCount": false,
// Additional file extensions that should be analyzed (usually used in combination with analyzer plugins).
"dart.additionalAnalyzerFileExtensions": [],
// An array of paths to be excluded from Dart analysis. This option should usually be set at the Workspace level. Excluded folders will also be ignored when detecting project types.
"dart.analysisExcludedFolders": [],
// Whether to enable analysis for AngularDart templates (requires the Angular analyzer plugin to be enabled in `analysis_options.yaml`).
"dart.analyzeAngularTemplates": true,
// Additional arguments to pass to the Dart Analysis Server.
"dart.analyzerAdditionalArgs": [],
// The port number to be used for the Dart analyzer diagnostic server.
"dart.analyzerDiagnosticsPort": null,
// The path to a custom Dart Analysis Server. This setting is intended for use by Dart Analysis Server developers.
"dart.analyzerPath": null,
// An SSH host to run the Analysis Server.
// This can be useful when modifying code on a remote machine using SSHFS.
"dart.analyzerSshHost": null,
// The port number to be used for the Dart Analysis Server VM service. This setting is intended for use by Dart Analysis Server developers.
"dart.analyzerVmServicePort": null,
// Whether to show a notification the first few times an Analysis Server exception occurs.
"dart.notifyAnalyzerErrors": true,
// Whether to ignore workspace folders and perform analysis based on the open files, as if no workspace was open at all. This allows opening large folders without causing them to be completely analyzed.
"dart.onlyAnalyzeProjectsWithOpenFiles": false,
// Whether to show TODOs in the Problems list. Can be a boolean to enable all TODO comments (TODO, FIXME, HACK, UNDONE) or an array of which types to enable. Older Dart SDKs may not support some TODO kinds.
"dart.showTodos": true,
// Whether to use the Dart Analyzer's original protocol instead of LSP. Some features are not supported when using the legacy protocol and support for it will eventually be removed. Please file issues on GitHub in the Dart-Code repo if you find yourself needing to enable this setting.
"dart.useLegacyAnalyzerProtocol": false,
// Custom settings for launching DevTools. This setting is intended for use by Dart DevTools developers.
"dart.customDevTools": {},
// Whether to launch external DevTools windows using Chrome or the system default browser.
// - chrome: Locate and launch Google Chrome from your system
// - default: Use your systems default web browser
"dart.devToolsBrowser": "chrome",
// Which editor/column to open [Dart DevTools](https://dart.dev/tools/dart-devtools) in.
// - beside: Open DevTools in beside the active editor
// - active: Open DevTools over the top of the active editor
// - external: Open DevTools externally in its own browser window
"dart.devToolsLocation": "beside",
// The port number to be used for the Dart DevTools.
"dart.devToolsPort": null,
// Whether to try to reuse existing DevTools windows instead of launching new ones. Only works for instances of DevTools launched by the DevTools server on the local machine.
"dart.devToolsReuseWindows": true,
// The theme to use for Dart DevTools.
"dart.devToolsTheme": "dark",
// Whether to automatically open DevTools at the start of a debug session. If embedded DevTools is enabled, this will launch the Widget Inspector embedded for Flutter projects, or launch DevTools externally in a browser for Dart projects.
// - never: Do not automatically launch DevTools when starting a debug session
// - flutter: Automatically launch DevTools when starting a Flutter debug session
// - always: Automatically launch DevTools when starting any debug session
"dart.openDevTools": "never",
// Whether to eagerly run DevTools for Flutter workspaces and share the spawned server with `flutter run`.
"dart.shareDevToolsWithFlutter": true,
// Whether to show notifications for widget errors that offer Inspect Widget links. This requires that the `dart.shareDevToolsWithFlutter` setting is also enabled.
"dart.showInspectorNotificationsForWidgetErrors": true,
// Whether to update DevTools if you are not using the latest version. This only applies to SDKs prior to Dart v2.15, since DevTools is included in the SDK since v2.15.
"dart.updateDevTools": true,
// Whether to use folding data from the Dart Analysis Server instead of the built-in VS Code indent-based folding.
"dart.analysisServerFolding": true,
// Whether to include symbols that have not been imported in the code completion list and automatically insert the required import when selecting them (requires restart).
"dart.autoImportCompletions": true,
// Determines when to insert comment slashes when pressing `<enter>` in the editor (requires restart).
//
// When using `tripleSlash`, double-slashes will still be included when breaking existing double-slash comments across additional lines.
// - none: Never insert slashes automatically
// - tripleSlash: Insert `///` when pressing `<enter>` at the end of a triple-slash comment
// - all: Insert `///` when pressing `<enter>` at the end of a triple-slash comment and also `//` when pressing `<enter>` at the end of a double-slash comment
"dart.automaticCommentSlashes": "tripleSlash",
// Whether to show annotations against constructor, method invocations and lists that span multiple lines.
"dart.closingLabels": true,
// Whether to insert parentheses and placeholders for positional and required arguments during code completions when using LSP. This feature is automatically disabled if commit characters are enabled.
"dart.completeFunctionCalls": true,
// What level of documentation to show in Hovers and Code Completion details. This setting is only supported for Dart SDKs after v2.18.
// - full: Show full documentation
// - summary: Show short documentatin summary
// - none: Do not show documentation
"dart.documentation": "full",
// An array of glob patterns that should be excluded for formatting. The pattern is matched against the absolute path of the file. Use `**/test/**` to skip formatting for all test directories.
"dart.doNotFormat": [],
// Whether to automatically commit the selected completion item when pressing certain keys such as . , ( and [. This setting does not currently apply to LSP, see `dart.previewCommitCharacters`.
"dart.enableCompletionCommitCharacters": false,
// Whether to enable the [dart_style](https://pub.dev/packages/dart_style) formatter for Dart code.
"dart.enableSdkFormatter": true,
// Whether to include Dart and Flutter snippets in code completion.
"dart.enableSnippets": true,
// Whether to insert argument placeholders during code completions. This feature is automatically disabled when `enableCompletionCommitCharacters` is enabled.
"dart.insertArgumentPlaceholders": true,
// The maximum length of a line of code. This is used by the document formatter.
"dart.lineLength": 80,
// Whether to enable [Snippet support in LSP TextEdits](https://github.com/rust-analyzer/rust-analyzer/blob/979e788957ced1957ee9ac1da70fb97abf9fe2b1/docs/dev/lsp-extensions.md#snippet-textedit).
"dart.lspSnippetTextEdits": true,
// Whether to rename files when renaming classes with matching names (for example renaming 'class Person' inside 'person.dart'). If set to 'prompt', will ask each time before renaming. If set to 'always', the file will automatically be renamed. This setting requires using LSP and a Dart SDK of at least v2.15.
"dart.renameFilesWithClasses": "never",
// Whether to show CodeLens actions in the editor for opening online DartPad samples.
"dart.showDartPadSampleCodeLens": true,
// Whether to show quick fixes for ignoring hints and lints.
"dart.showIgnoreQuickFixes": true,
// Whether to show CodeLens actions in the editor for quick running / debugging scripts with main functions.
"dart.showMainCodeLens": true,
// Whether to show CodeLens actions in the editor for quick running / debugging tests.
"dart.showTestCodeLens": true,
// Whether to automatically update imports when moving or renaming files. Currently only supports single file moves / renames.
"dart.updateImportsOnRename": true,
// Whether to show a warning when modifying files in the [system package cache](https://dart.dev/tools/pub/glossary#system-cache) directory.
"dart.warnWhenEditingFilesInPubCache": true,
// Whether to show a warning when modifying files outside of the workspace.
"dart.warnWhenEditingFilesOutsideWorkspace": true,
// Whether to automatically run `adb connect 100.115.92.2:5555` when spawning the Flutter daemon when running on Chrome OS.
"dart.flutterAdbConnectOnChromeOs": false,
// Additional args to pass to all `flutter` commands including `flutter daemon`. Do not use this to pass arguments to your Flutter app, use the `args` field in a `launch.json` or the `dart.flutterRunAdditionalArgs` setting.
"dart.flutterAdditionalArgs": [],
// Additional args to pass to the `flutter attach` command. Using the `args`/`toolArgs` fields in `launch.json` is usually better than this setting as this setting will apply to _all_ projects.
"dart.flutterAttachAdditionalArgs": [],
// The programming language to use for Android apps when creating new projects using the 'Flutter: New Project' command.
"dart.flutterCreateAndroidLanguage": "kotlin",
// The programming language to use for iOS apps when creating new projects using the 'Flutter: New Project' command.
"dart.flutterCreateIOSLanguage": "swift",
// The organization responsible for your new Flutter project, in reverse domain name notation (e.g. `com.google`). This string is used in Java package names and as prefix in the iOS bundle identifier when creating new projects using the 'Flutter: New Project' command.
"dart.flutterCreateOrganization": null,
// The platforms to enable for new projects created using the 'Flutter: New Project' command. If unset, all platforms will be enabled.
"dart.flutterCreatePlatforms": null,
// Custom emulators to show in the emulator list for easier launching. If IDs match existing emulators returned by Flutter, the custom emulators will override them.
"dart.flutterCustomEmulators": [],
// Whether to automatically run the Generate Localizations command for Flutter apps when saving .arb files.
// - never: Do not generate localizations when saving
// - manual: Generate localizations for explicit manual saves (requires pressing Save explicitly if using autosave)
// - manualIfDirty: Generate localizations for explicit manual saves (requires pressing Save explicitly if using autosave) only if the saved file had changes
// - all: Generate localizations for all saves, manual or automatic
// - allIfDirty: Generate localizations for all saves, manual or automatic only if the saved file had changes
"dart.flutterGenerateLocalizationsOnSave": "never",
// Whether to show Flutter icons and colors in the editor gutter.
"dart.flutterGutterIcons": true,
// Whether to automatically send a Hot Reload request to Flutter apps during a debug session when saving files. Dart apps are controlled by the hotReloadOnSave setting.
// - never: Do not reload when saving
// - manual: Reload for explicit manual saves (requires pressing Save explicitly if using autosave)
// - manualIfDirty: Reload for explicit manual saves (requires pressing Save explicitly if using autosave) only if the saved file had changes
// - all: Reload for all saves, manual or automatic
// - allIfDirty: Reload for all saves, manual or automatic only if the saved file had changes
"dart.flutterHotReloadOnSave": "manual",
// Whether to show the Flutter Outline tree in the sidebar.
"dart.flutterOutline": true,
// Additional args to pass to the `flutter run` command. Using the `args`/`toolArgs` fields in `launch.json` is usually better than this setting as this setting will apply to _all_ projects.
"dart.flutterRunAdditionalArgs": [],
// The path to a directory to save Flutter screenshots.
"dart.flutterScreenshotPath": null,
// Whether to set newly connected devices as the current device in Flutter projects.
"dart.flutterSelectDeviceWhenConnected": true,
// When to show the Flutter emulators. These are usually hidden for remote workspaces because it is usually not possible to see or interact with emulators in a remote session. If you are using remoting/containers in a way that you can interact with launched emulator processes, you may wish to set this to 'always'.
// - local: Only show for local workspaces
// - always: Always show, even for remote sessions
// - never: Never show emulators
"dart.flutterShowEmulators": "local",
// When to show the Flutter headless web-server device. This requires using the Dart Debug extension for Chrome and is usually only used for remote environments where Chrome is not available such as browser/cloud-based IDEs (requires restart).
// - remote: Only show for remote workspaces (includes browser-based workspaces)
// - always: Always show, even for local sessions
"dart.flutterShowWebServerDevice": "remote",
// Additional args to pass to the `flutter test` command. Using the `args`/`toolArgs` fields in `launch.json` is usually better than this setting as this setting will apply to _all_ projects.
"dart.flutterTestAdditionalArgs": [],
// Whether to pass `--track-widget-creation` to Flutter apps (required to support 'Inspect Widget'). This setting is always ignored when running in Profile or Release mode.
"dart.flutterTrackWidgetCreation": true,
// Sets the [Web renderer](https://flutter.dev/docs/development/tools/web-renderers) used for Flutter web apps.
// - auto: Allow Flutter to pick the best renderer based on the users device
// - html: Always use the HTML renderer
// - canvaskit: Always use the CanvasKit renderer
"dart.flutterWebRenderer": "auto",
// Whether to automatically send a Hot Reload request to Dart apps during a debug session when saving files. Flutter apps are controlled by the flutterHotReloadOnSave setting.
// - never: Do not reload when saving
// - manual: Reload for explicit manual saves (requires pressing Save explicitly if using autosave)
// - manualIfDirty: Reload for explicit manual saves (requires pressing Save explicitly if using autosave) only if the saved file had changes
// - all: Reload for all saves, manual or automatic
// - allIfDirty: Reload for all saves, manual or automatic only if the saved file had changes
"dart.hotReloadOnSave": "never",
// Whether to use the --offline switch for commands like 'pub get' and 'Flutter: New Project'.
"dart.offline": false,
// Moved: Use `terraform.languageServer.indexing.ignorePaths` instead
// Per-workspace list of module directories for the language server to exclude
"terraform-ls.excludeRootModules": [],
// Moved: Use `terraform.languageServer.indexing.ignoreDirectoryNames` instead
// Per-workspace list of directory names for the language server to ignore when indexing files
"terraform-ls.ignoreDirectoryNames": [],
// Moved: Use `terraform.languageServer.rootModules` instead
// Per-workspace list of module directories for the language server to read
"terraform-ls.rootModules": [],
// Moved: Use `terraform.languageServer.terraform.path` instead
// Path to the Terraform binary
"terraform-ls.terraformExecPath": "",
// Moved: Use `terraform.languageServer.terraform.timeout` instead
// Overrides Terraform execution timeout (e.g. 30s)
"terraform-ls.terraformExecTimeout": "",
// Moved: Use `terraform.languageServer.terraform.logFilePath` instead
// Path to a file for Terraform executions to be logged into (TF_LOG_PATH) with support for variables (e.g. timestamp, pid, ppid) via Go template syntax {{varName}}
"terraform-ls.terraformLogFilePath": "",
// Arguments to pass to language server binary
"terraform.languageServer.args": [
"serve"
],
// Enable Terraform Language Server
"terraform.languageServer.enable": true,
// Moved: Use `terraform.languageServer.indexing.ignorePaths` instead.
// Per-workspace list of module directories for the language server to exclude
"terraform.languageServer.excludeRootModules": [],
// Moved: Use `terraform.languageServer.indexing.ignoreDirectoryNames` instead.
// Per-workspace list of directory names for the language server to ignore when indexing files
"terraform.languageServer.ignoreDirectoryNames": [],
// Enable warning when opening a single Terraform file instead of a Terraform folder. Enabling this will prevent the message being sent
"terraform.languageServer.ignoreSingleFileWarning": false,
// Per-workspace list of directory names for the language server to ignore when indexing files
"terraform.languageServer.indexing.ignoreDirectoryNames": [],
// Per-workspace list of paths for the language server to ignore when indexing files
"terraform.languageServer.indexing.ignorePaths": [],
// Path to the Terraform Language Server binary (optional)
"terraform.languageServer.path": "",
// Deprecated: This setting is not used by the extension and will be removed in a future release. Add a folder/path to your workspace instead, if you wish it to be indexed.
// Per-workspace list of module directories for the language server to read
"terraform.languageServer.rootModules": [],
// Language server TCP port to connect to. This is not compatible with `terraform.languageServer.path`. This is used when you want the extension to connect via TCP to an already running language server process.
"terraform.languageServer.tcp.port": null,
// The path to a log file for very detailed logging in the Dart Analysis Server that may be useful when trying to diagnose Analysis Server issues.
"dart.analyzerInstrumentationLogFile": null,
// The path to a log file for communication between Dart Code and the Analysis Server.
"dart.analyzerLogFile": null,
// The path to a log file for communication with the DAP debug adapters. This is useful when trying to diagnose issues with debugging such as missed breakpoints.
"dart.dapLogFile": null,
// The path to a log file for Dart test runs. This is useful when trying to diagnose issues with unit test executions. Use `${name}` in the log file name to prevent concurrent debug sessions overwriting each others logs.
"dart.dartTestLogFile": null,
// The path to a low-traffic log file for the Dart DevTools service.
"dart.devToolsLogFile": null,
// The path to a low-traffic log file for basic extension and editor issues.
"dart.extensionLogFile": null,
// The path to a log file for the `flutter daemon` service, which provides information about connected devices to show in the status bar.
"dart.flutterDaemonLogFile": null,
// The path to a log file for `flutter run`, which is used to launch Flutter apps from VS Code. This is useful when trying to diagnose issues with apps launching (or failing to) on simulators and devices. Use `${name}` in the log file name to prevent concurrent debug sessions overwriting each others logs.
"dart.flutterRunLogFile": null,
// The path to a log file for `flutter test`, which is used to run unit tests from VS Code. This is useful when trying to diagnose issues with unit test executions. Use `${name}` in the log file name to prevent concurrent debug sessions overwriting each others logs.
"dart.flutterTestLogFile": null,
// The maximum number of completion items to return from a code completion request. Updated results will be fetched as additional characters are typed. Lower numbers may improved performance. Only affects LSP for > Dart SDK 2.17.
"dart.maxCompletionItems": 100000,
// The maximum length of a line in the log file. Lines longer than this will be truncated and suffixed with an ellipsis.
"dart.maxLogLineLength": 2000,
// The path to a log file for communication between Dart Code and the VM service. This is useful when trying to diagnose issues with debugging such as missed breakpoints. Use `${name}` in the log file name to prevent concurrent debug sessions overwriting each others logs.
"dart.vmServiceLogFile": null,
// The path to a log file for communication between Dart Code and the webdev daemon. This is useful when trying to diagnose issues with launching web apps. Use `${name`} in the log file name to prevent concurrent debug sessions overwriting each others logs.
"dart.webDaemonLogFile": null,
// Whether to prompt to get/upgrade packages when opening a project with missing/out of date packages.
"dart.promptToGetPackages": true,
// Additional args to pass to all `pub` commands.
"dart.pubAdditionalArgs": [],
// Whether to automatically run `pub get` on nested projects above or below the one where the pubspec was changed.
// - none: Only run `pub get` for the project whose pubspec was changed
// - both: Run `pub get` also in parent or child projects of the one whose pubspec was changed
// - above: Run `pub get` also in parent projects of the one whose pubspec was changed
// - below: Run `pub get` also in child projects of the one whose pubspec was changed
"dart.runPubGetOnNestedProjects": "none",
// Whether to run `pub get` whenever `pubspec.yaml` is saved.
// - always: Always run when pubspec is changed
// - prompt: Prompt to run when pubspec is changed
// - never: Never run when pubspec is changed
"dart.runPubGetOnPubspecChanges": "always",
// Additional args to pass to the `build_runner` when building/watching/serving.
"dart.buildRunnerAdditionalArgs": [],
// Additional args to pass to the `dart` command when running CLI scripts. Using the `args`/`toolArgs` fields in `launch.json` is usually better than this setting as this setting will apply to _all_ projects.
"dart.cliAdditionalArgs": [],
// Whether to run Dart CLI apps in the Debug Console or a terminal. The Debug Console has more functionality because the process is controlled by the debug adapter, but is unable to accept input from the user via stdin.
// - debugConsole: Run in the Debug Console pane, using the input as a REPL to evaluate expressions
// - terminal: Run in the VS Code integrated terminal where input will be sent to stdin
// - externalTerminal: Run in an external terminal where input will be sent to stdin
"dart.cliConsole": "debugConsole",
// The path to a custom Dart Debug Adapter. This setting is intended for use by Dart Debug Adapter developers.
"dart.customDartDapPath": null,
// The path to a custom Flutter Debug Adapter. This setting is intended for use by Dart Debug Adapter developers.
"dart.customFlutterDapPath": null,
// The protocol to use for the Dart Debug Extension backend service and injected client. Using WebSockets can improve performance but may fail when connecting through some proxy servers.
// - sse: Server-Sent Events
// - ws: WebSockets
"dart.debugExtensionBackendProtocol": "ws",
// Whether to mark external pub package libraries (including `package:flutter`) as debuggable, enabling stepping into them while debugging.
"dart.debugExternalPackageLibraries": false,
// Whether to mark Dart SDK libraries (`dart:*`) as debuggable, enabling stepping into them while debugging.
"dart.debugSdkLibraries": false,
// Whether to evaluate getters in order to display them in debug views (such as the Variables, Watch and Hovers views).
"dart.evaluateGettersInDebugViews": true,
// Whether to call toString() on objects when rendering them in debug views (such as the Variables, Watch and Hovers views). Only applies to views of 100 or fewer values for performance reasons.
"dart.evaluateToStringInDebugViews": true,
// Determines how to display Hot Restart and Hot Reload progress.
// - notification: Hot reload progress will be shown in a toast notification
// - statusBar: Hot reload progress will be shown only in the status bar
"dart.hotReloadProgress": "notification",
// Whether to prompt before running if there are errors in your project. Test scripts will be excluded from the check unless they're the script being run.
"dart.promptToRunIfErrors": true,
// Whether to show logs from the `dart:developer` `log()` function in the debug console.
"dart.showDartDeveloperLogs": true,
// Whether to show DevTools buttons in the floating Debug toolbar.
"dart.showDevToolsDebugToolBarButtons": true,
// Whether to suppress test timeouts when running/debugging tests. To work properly this requires package:test version 1.20.1 or newer. For older versions, the default timeout will be increased to 1d but this will not affect tests that have explicit (non-factor) timeouts set with @timeout.
// - never: Do not suppress test timeouts
// - debug: Suppress test timeouts when Debugging
// - always: Suppress test timeouts both when Running and Debugging
"dart.suppressTestTimeouts": "never",
// Additional args to pass to the `dart test` command. Using the `args`/`toolArgs` fields in `launch.json` is usually better than this setting as this setting will apply to _all_ projects.
"dart.testAdditionalArgs": [],
// Additional args to pass to the Dart VM when running/debugging command line apps or Dart test scripts.
"dart.vmAdditionalArgs": [],
// Whether to check you are using the latest version of the Dart SDK at startup.
"dart.checkForSdkUpdates": true,
// The location of the Flutter SDK to use. If blank (or not a valid SDK), Dart Code will attempt to find it from the project directory, `FLUTTER_ROOT` environment variable and the `PATH` environment variable.
"dart.flutterSdkPath": null,
// An array of paths that either directly point to a Flutter SDK or the parent directory of multiple Flutter SDKs that can be used for fast SDK switching. These paths are not used directly when searching for an SDK. When this setting is populated, the version number in the status bar can be used to quickly switch between SDKs.
"dart.flutterSdkPaths": [],
// The location of the Dart SDK to use for analyzing and executing code. If blank (or not a valid SDK), Dart Code will attempt to find it from the `PATH` environment variable. When editing a Flutter project, the version of Dart included in the Flutter SDK is used in preference.
"dart.sdkPath": null,
// An array of paths that either directly point to a Dart SDK or the parent directory of multiple Dart SDKs that can be used for fast SDK switching. These paths are not used directly when searching for an SDK. When this setting is populated, the SDK version number in the status bar can be used to quickly switch between SDKs.
"dart.sdkPaths": [],
// Whether to consider files ending `_test.dart` that are outside of the test directory as tests. This should be enabled if you put tests inside the `lib` directory of your Flutter app so they will be run with `flutter test` and not `flutter run`.
"dart.allowTestsOutsideTestFolder": false,
// When to automatically switch focus to the test list (array to support multiple values).
"dart.openTestView": [
"testRunStart"
],
// Whether to show skipped tests in the test tree.
"dart.showSkippedTests": true,
// Additional environment variables to be added to all Dart/Flutter processes spawned by the Dart and Flutter extensions.
"dart.env": {},
// How many levels (including the workspace roots) down the workspace to search for Dart/Flutter projects. Increasing this number may help detect Flutter projects that are deeply nested in your workspace but slow down all operations that search for projects, including extension activation.
"dart.projectSearchDepth": 5,
// EXPERIMENTAL: The port where flutter daemon can be accessed if daemon is run remotely. This setting is intended for use by Google developers.
"dart.daemonPort": false,
// Whether to use code snippets from the Dart Analysis Server instead of those included in the extension. Server snippets are context and language-version aware and should be preferred.
"dart.enableServerSnippets": true,
// Whether to normalize file casings before sending them to the LSP server. This may fix issues with file_names lints not disappearing after renaming a file if the VS Code API continues to use the original casing.
"dart.normalizeFileCasing": false,
// EXPERIMENTAL: Whether to enable commit characters for the LSP server. In a future release, the dart.enableCompletionCommitCharacters setting will also apply to LSP.
"dart.previewCommitCharacters": false,
// EXPERIMENTAL: Whether to enable the [Flutter UI Guides preview](https://dartcode.org/releases/v3-1/#preview-flutter-ui-guides).
"dart.previewFlutterUiGuides": false,
// EXPERIMENTAL: Whether to enable custom tracking of Flutter UI guidelines (to hide some latency of waiting for the next Flutter Outline).
"dart.previewFlutterUiGuidesCustomTracking": false,
// Whether to perform hot reload on save based on a filesystem watcher for Dart files rather than using VS Code's `onDidSave` event. This allows reloads to trigger when external tools modify Dart source files.
"dart.previewHotReloadOnSaveWatcher": false,
// PREVIEW: Whether to use the new debug adapters shipped in the Dart and Flutter SDKs. This setting will only apply if your SDK is new enough to include an appropriate version of the DAP server. Setting the value to `true` will opt-in to the new DAPs. Setting to `false` will opt-out. Leaving as `null` will allow the extension to decide when to enable the SDK DAPs as part of a progressive rollout.
"dart.previewSdkDaps": null,
// Path to a file (`TF_LOG_PATH`) for Terraform executions to be logged used by the the Terraform Language Server. Support for variables (e.g. timestamp, pid, ppid) via Go template syntax `{{varName}}`
"terraform.languageServer.terraform.logFilePath": "",
// Path to the Terraform binary used by the Terraform Language Server
"terraform.languageServer.terraform.path": "",
// Overrides Terraform execution timeout (e.g. 30s) used by the Terraform Language Server
"terraform.languageServer.terraform.timeout": "",
// Moved: Use individual terraform.experimentalFeatures.* instead
// Experimental (opt-in) terraform-ls features
"terraform-ls.experimentalFeatures": {},
// Enable autocompletion for required fields when completing Terraform blocks. Combine with `editor.suggest.preview` and the editor will provide inline snippet suggestions for blocks of code
"terraform.experimentalFeatures.prefillRequiredFields": false,
// Enable validating the currently open file on save
"terraform.experimentalFeatures.validateOnSave": false,
// Controls whether the editor shows CodeLens.
"diffEditor.codeLens": false,
// When enabled, the diff editor ignores changes in leading or trailing whitespace.
"diffEditor.ignoreTrimWhitespace": true,
// Timeout in milliseconds after which diff computation is cancelled. Use 0 for no timeout.
"diffEditor.maxComputationTime": 5000,
// Maximum file size in MB for which to compute diffs. Use 0 for no limit.
"diffEditor.maxFileSize": 50,
// Controls whether the diff editor shows +/- indicators for added/removed changes.
"diffEditor.renderIndicators": true,
// Controls whether the diff editor shows the diff side by side or inline.
"diffEditor.renderSideBySide": true,
//
// - off: Lines will never wrap.
// - on: Lines will wrap at the viewport width.
// - inherit: Lines will wrap according to the `editor.wordWrap` setting.
"diffEditor.wordWrap": "inherit",
// Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, the semi-colon (`;`) can be a commit character that accepts a suggestion and types that character.
"editor.acceptSuggestionOnCommitCharacter": true,
// Controls whether suggestions should be accepted on `Enter`, in addition to `Tab`. Helps to avoid ambiguity between inserting new lines or accepting suggestions.
// - on
// - smart: Only accept a suggestion with `Enter` when it makes a textual change.
// - off
"editor.acceptSuggestionOnEnter": "on",
// Controls the number of lines in the editor that can be read out by a screen reader at once. When we detect a screen reader we automatically set the default to be 500. Warning: this has a performance implication for numbers larger than the default.
"editor.accessibilityPageSize": 10,
// Controls whether the editor should run in a mode where it is optimized for screen readers. Setting to on will disable word wrapping.
// - auto: The editor will use platform APIs to detect when a Screen Reader is attached.
// - on: The editor will be permanently optimized for usage with a Screen Reader. Word wrapping will be disabled.
// - off: The editor will never be optimized for usage with a Screen Reader.
"editor.accessibilitySupport": "auto",
// Controls whether the editor should automatically close brackets after the user adds an opening bracket.
// - always
// - languageDefined: Use language configurations to determine when to autoclose brackets.
// - beforeWhitespace: Autoclose brackets only when the cursor is to the left of whitespace.
// - never
"editor.autoClosingBrackets": "languageDefined",
// Controls whether the editor should remove adjacent closing quotes or brackets when deleting.
// - always
// - auto: Remove adjacent closing quotes or brackets only if they were automatically inserted.
// - never
"editor.autoClosingDelete": "auto",
// Controls whether the editor should type over closing quotes or brackets.
// - always
// - auto: Type over closing quotes or brackets only if they were automatically inserted.
// - never
"editor.autoClosingOvertype": "auto",
// Controls whether the editor should automatically close quotes after the user adds an opening quote.
// - always
// - languageDefined: Use language configurations to determine when to autoclose quotes.
// - beforeWhitespace: Autoclose quotes only when the cursor is to the left of whitespace.
// - never
"editor.autoClosingQuotes": "languageDefined",
// Controls whether the editor should automatically adjust the indentation when users type, paste, move or indent lines.
// - none: The editor will not insert indentation automatically.
// - keep: The editor will keep the current line's indentation.
// - brackets: The editor will keep the current line's indentation and honor language defined brackets.
// - advanced: The editor will keep the current line's indentation, honor language defined brackets and invoke special onEnterRules defined by languages.
// - full: The editor will keep the current line's indentation, honor language defined brackets, invoke special onEnterRules defined by languages, and honor indentationRules defined by languages.
"editor.autoIndent": "full",
// Controls whether the editor should automatically surround selections when typing quotes or brackets.
// - languageDefined: Use language configurations to determine when to automatically surround selections.
// - quotes: Surround with quotes but not brackets.
// - brackets: Surround with brackets but not quotes.
// - never
"editor.autoSurround": "languageDefined",
// Controls whether bracket pair colorization is enabled or not. Use `workbench.colorCustomizations` to override the bracket highlight colors.
"editor.bracketPairColorization.enabled": true,
// Controls whether each bracket type has its own independent color pool.
"editor.bracketPairColorization.independentColorPoolPerBracketType": false,
// Code action kinds to be run on save.
"editor.codeActionsOnSave": {},
// Controls whether the editor shows CodeLens.
"editor.codeLens": true,
// Controls the font family for CodeLens.
"editor.codeLensFontFamily": "",
// Controls the font size in pixels for CodeLens. When set to `0`, 90% of `editor.fontSize` is used.
"editor.codeLensFontSize": 0,
// Controls whether the editor should render the inline color decorators and color picker.
"editor.colorDecorators": true,
// Enable that the selection with the mouse and keys is doing column selection.
"editor.columnSelection": false,
// Controls if empty lines should be ignored with toggle, add or remove actions for line comments.
"editor.comments.ignoreEmptyLines": true,
// Controls whether a space character is inserted when commenting.
"editor.comments.insertSpace": true,
// Controls whether syntax highlighting should be copied into the clipboard.
"editor.copyWithSyntaxHighlighting": true,
// Control the cursor animation style.
"editor.cursorBlinking": "blink",
// Controls whether the smooth caret animation should be enabled.
"editor.cursorSmoothCaretAnimation": false,
// Controls the cursor style.
"editor.cursorStyle": "line",
// Controls the minimal number of visible leading and trailing lines surrounding the cursor. Known as 'scrollOff' or 'scrollOffset' in some other editors.
"editor.cursorSurroundingLines": 0,
// Controls when `cursorSurroundingLines` should be enforced.
// - default: `cursorSurroundingLines` is enforced only when triggered via the keyboard or API.
// - all: `cursorSurroundingLines` is enforced always.
"editor.cursorSurroundingLinesStyle": "default",
// Controls the width of the cursor when `editor.cursorStyle` is set to `line`.
"editor.cursorWidth": 0,
// Defines a default formatter which takes precedence over all other formatter settings. Must be the identifier of an extension contributing a formatter.
// - null: None
// - ms-dotnettools.csharp: C# for Visual Studio Code (powered by OmniSharp).
// - vscode.css-language-features: Provides rich language support for CSS, LESS and SCSS files.
// - Dart-Code.dart-code: Dart language support and debugger for Visual Studio Code.
// - Dart-Code.flutter: Flutter support and debugger for Visual Studio Code.
// - golang.go: Rich Go language support for Visual Studio Code
// - Zignd.html-css-class-completion: CSS class name completion for the HTML class attribute based on the definitions found in your workspace.
// - vscode.html-language-features: Provides rich language support for HTML and Handlebar files
// - vscode.json-language-features: Provides rich language support for JSON files.
// - ms-toolsai.jupyter: Jupyter notebook support, interactive programming and computing that supports Intellisense, debugging and more.
// - vscode.markdown-language-features: Provides rich language support for Markdown.
// - vscode.php-language-features: Provides rich language support for PHP files.
// - esbenp.prettier-vscode: Code formatter using prettier
// - ms-python.python: IntelliSense (Pylance), Linting, Debugging (multi-threaded, remote), Jupyter Notebooks, code formatting, refactoring, unit tests, and more.
// - ms-vscode.references-view: Reference Search results as separate, stable view in the sidebar
// - ms-vscode-remote.remote-ssh-edit: Edit SSH configuration files
// - vscode.search-result: Provides syntax highlighting and language features for tabbed search results.
// - ThreadHeap.serverless-ide-vscode: Enhanced support for AWS SAM, CloudFormation and Serverless Framework
// - mtxr.sqltools: Connecting users to many of the most commonly used databases. Welcome to database management done right.
// - hashicorp.terraform: Syntax highlighting and autocompletion for Terraform
// - vscode.typescript-language-features: Provides rich language support for JavaScript and TypeScript.
// - ms-azuretools.vscode-docker: Makes it easy to create, manage, and debug containerized applications.
// - dbaeumer.vscode-eslint: Integrates ESLint JavaScript into VS Code.
// - GraphQL.vscode-graphql: GraphQL LSP extension that adds autocompletion, validation, go to definition, hover, outline and more.
// - GraphQL.vscode-graphql-execution: Execute graphql operations from your code (revived!)
// - ms-python.vscode-pylance: A performant, feature-rich language server for Python in VS Code
// - rangav.vscode-thunder-client: Lightweight Rest API Client for VS Code
// - vscode.configuration-editing: Provides capabilities (advanced IntelliSense, auto-fixing) in configuration files like settings, launch, and extension recommendation files.
// - vscode.debug-auto-launch: Helper for auto-attach feature when node-debug extensions are not active.
// - vscode.debug-server-ready: Open URI in browser if server under debugging is ready.
// - vscode.emmet: Emmet support for VS Code
// - dsznajder.es7-react-js-snippets: Extensions for React, React-Native and Redux in JS/TS with ES7+ syntax. Customizable. Built-in integration with prettier.
// - vscode.extension-editing: Provides linting capabilities for authoring extensions.
// - vscode.git: Git SCM Integration
// - vscode.git-base: Git static contributions and pickers.
// - vscode.github: GitHub features for VS Code
// - vscode.github-authentication: GitHub Authentication Provider
// - vscode.grunt: Extension to add Grunt capabilities to VS Code.
// - vscode.gulp: Extension to add Gulp capabilities to VSCode.
// - vscode.image-preview: Provides VS Code's built-in image preview
// - VisualStudioExptTeam.intellicode-api-usage-examples: See relevant code examples from GitHub for over 100K different APIs right in your editor.
// - vscode.ipynb: Provides basic support for opening and reading Jupyter's .ipynb notebook files
// - vscode.jake: Extension to add Jake capabilities to VS Code.
// - ms-vscode.js-debug: An extension for debugging Node.js programs and Chrome.
// - ms-vscode.js-debug-companion: Companion extension to js-debug that provides capability for remote debugging
// - ms-toolsai.jupyter-renderers: Renderers for Jupyter Notebooks (with plotly, vega, gif, png, svg, jpeg and other such outputs)
// - ritwickdey.LiveServer: Launch a development local Server with live reload feature for static & dynamic pages
// - vscode.markdown-math: Adds math support to Markdown in notebooks.
// - PKief.material-icon-theme: Material Design Icons for Visual Studio Code
// - zhuangtongfa.material-theme: Atom‘s iconic One Dark theme for Visual Studio Code
// - vscode.merge-conflict: Highlighting and commands for inline merge conflicts.
// - vscode.microsoft-authentication: Microsoft authentication provider
// - vscode.npm: Extension to add task support for npm scripts.
// - christian-kohler.path-intellisense: Visual Studio Code plugin that autocompletes filenames
// - pnp.polacode: 📸 Polaroid for your code
// - ms-vscode-remote.remote-containers: Open any folder or repository inside a Docker container and take advantage of Visual Studio Code's full feature set.
// - ms-vscode-remote.remote-ssh: Open any folder on a remote machine using SSH and take advantage of VS Code's full feature set.
// - ms-vscode-remote.remote-wsl-recommender: Recommends using the Windows Subsystem for Linux (WSL) and the Remote WSL extension.
// - vscode.simple-browser: A very basic built-in webview for displaying web content.
// - burkeholland.simple-react-snippets: Dead simple React snippets you will actually use
// - Unity.unity-debug: Unity debugger extension
// - Tobiah.unity-tools: Various tools to help with Unity development
// - pranaygp.vscode-css-peek: Allow peeking to css ID and class strings as definitions from html files to respective CSS. Allows peek and goto definition.
// - ms-vscode.vscode-js-profile-table: Text visualizer for profiles taken from the JavaScript debugger
// - alexcvzz.vscode-sqlite: Explore and query SQLite databases.
// - VisualStudioExptTeam.vscodeintellicode: AI-assisted development
"editor.defaultFormatter": null,
// Controls whether the Go to Definition mouse gesture always opens the peek widget.
"editor.definitionLinkOpensInPeek": false,
// Controls whether `editor.tabSize#` and `#editor.insertSpaces` will be automatically detected when a file is opened based on the file contents.
"editor.detectIndentation": true,
// Controls whether the editor should allow moving selections via drag and drop.
"editor.dragAndDrop": true,
// Controls whether copying without a selection copies the current line.
"editor.emptySelectionClipboard": true,
// Enable/disable running edits from extensions on paste.
"editor.experimental.pasteActions.enabled": false,
// Scrolling speed multiplier when pressing `Alt`.
"editor.fastScrollSensitivity": 5,
// Controls whether the Find Widget should add extra lines on top of the editor. When true, you can scroll beyond the first line when the Find Widget is visible.
"editor.find.addExtraSpaceOnTop": true,
// Controls the condition for turning on Find in Selection automatically.
// - never: Never turn on Find in Selection automatically (default).
// - always: Always turn on Find in Selection automatically.
// - multiline: Turn on Find in Selection automatically when multiple lines of content are selected.
"editor.find.autoFindInSelection": "never",
// Controls whether the cursor should jump to find matches while typing.
"editor.find.cursorMoveOnType": true,
// Controls whether the search automatically restarts from the beginning (or the end) when no further matches can be found.
"editor.find.loop": true,
// Controls whether the search string in the Find Widget is seeded from the editor selection.
// - never: Never seed search string from the editor selection.
// - always: Always seed search string from the editor selection, including word at cursor position.
// - selection: Only seed search string from the editor selection.
"editor.find.seedSearchStringFromSelection": "always",
// Controls whether the editor has code folding enabled.
"editor.folding": true,
// Controls whether the editor should highlight folded ranges.
"editor.foldingHighlight": true,
// Controls whether the editor automatically collapses import ranges.
"editor.foldingImportsByDefault": false,
// The maximum number of foldable regions. Increasing this value may result in the editor becoming less responsive when the current source has a large number of foldable regions.
"editor.foldingMaximumRegions": 5000,
// Controls the strategy for computing folding ranges.
// - auto: Use a language-specific folding strategy if available, else the indentation-based one.
// - indentation: Use the indentation-based folding strategy.
"editor.foldingStrategy": "auto",
// Controls the font family.
"editor.fontFamily": "Consolas, 'Courier New', monospace",
// Configures font ligatures or font features. Can be either a boolean to enable/disable ligatures or a string for the value of the CSS 'font-feature-settings' property.
"editor.fontLigatures": false,
// Controls the font size in pixels.
"editor.fontSize": 14,
// Controls the font weight. Accepts "normal" and "bold" keywords or numbers between 1 and 1000.
"editor.fontWeight": "normal",
// Controls whether the editor should automatically format the pasted content. A formatter must be available and the formatter should be able to format a range in a document.
"editor.formatOnPaste": false,
// Format a file on save. A formatter must be available, the file must not be saved after delay, and the editor must not be shutting down.
"editor.formatOnSave": false,
// Controls if format on save formats the whole file or only modifications. Only applies when `editor.formatOnSave` is enabled.
// - file: Format the whole file.
// - modifications: Format modifications (requires source control).
// - modificationsIfAvailable: Will attempt to format modifications only (requires source control). If source control can't be used, then the whole file will be formatted.
"editor.formatOnSaveMode": "file",
// Controls whether the editor should automatically format the line after typing.
"editor.formatOnType": false,
// Controls whether the editor should render the vertical glyph margin. Glyph margin is mostly used for debugging.
"editor.glyphMargin": true,
// Alternative command id that is being executed when the result of 'Go to Declaration' is the current location.
"editor.gotoLocation.alternativeDeclarationCommand": "editor.action.goToReferences",
// Alternative command id that is being executed when the result of 'Go to Definition' is the current location.
"editor.gotoLocation.alternativeDefinitionCommand": "editor.action.goToReferences",
// Alternative command id that is being executed when the result of 'Go to Implementation' is the current location.
"editor.gotoLocation.alternativeImplementationCommand": "",
// Alternative command id that is being executed when the result of 'Go to Reference' is the current location.
"editor.gotoLocation.alternativeReferenceCommand": "",
// Alternative command id that is being executed when the result of 'Go to Type Definition' is the current location.
"editor.gotoLocation.alternativeTypeDefinitionCommand": "editor.action.goToReferences",
// This setting is deprecated, please use separate settings like 'editor.editor.gotoLocation.multipleDefinitions' or 'editor.editor.gotoLocation.multipleImplementations' instead.
//
"editor.gotoLocation.multiple": null,
// Controls the behavior the 'Go to Declaration'-command when multiple target locations exist.
// - peek: Show peek view of the results (default)
// - gotoAndPeek: Go to the primary result and show a peek view
// - goto: Go to the primary result and enable peek-less navigation to others
"editor.gotoLocation.multipleDeclarations": "peek",
// Controls the behavior the 'Go to Definition'-command when multiple target locations exist.
// - peek: Show peek view of the results (default)
// - gotoAndPeek: Go to the primary result and show a peek view
// - goto: Go to the primary result and enable peek-less navigation to others
"editor.gotoLocation.multipleDefinitions": "peek",
// Controls the behavior the 'Go to Implementations'-command when multiple target locations exist.
// - peek: Show peek view of the results (default)
// - gotoAndPeek: Go to the primary result and show a peek view
// - goto: Go to the primary result and enable peek-less navigation to others
"editor.gotoLocation.multipleImplementations": "peek",
// Controls the behavior the 'Go to References'-command when multiple target locations exist.
// - peek: Show peek view of the results (default)
// - gotoAndPeek: Go to the primary result and show a peek view
// - goto: Go to the primary result and enable peek-less navigation to others
"editor.gotoLocation.multipleReferences": "peek",
// Controls the behavior the 'Go to Type Definition'-command when multiple target locations exist.
// - peek: Show peek view of the results (default)
// - gotoAndPeek: Go to the primary result and show a peek view
// - goto: Go to the primary result and enable peek-less navigation to others
"editor.gotoLocation.multipleTypeDefinitions": "peek",
// Controls whether bracket pair guides are enabled or not.
// - true: Enables bracket pair guides.
// - active: Enables bracket pair guides only for the active bracket pair.
// - false: Disables bracket pair guides.
"editor.guides.bracketPairs": false,
// Controls whether horizontal bracket pair guides are enabled or not.
// - true: Enables horizontal guides as addition to vertical bracket pair guides.
// - active: Enables horizontal guides only for the active bracket pair.
// - false: Disables horizontal bracket pair guides.
"editor.guides.bracketPairsHorizontal": "active",
// Controls whether the editor should highlight the active bracket pair.
"editor.guides.highlightActiveBracketPair": true,
// Controls whether the editor should highlight the active indent guide.
// - true: Highlights the active indent guide.
// - always: Highlights the active indent guide even if bracket guides are highlighted.
// - false: Do not highlight the active indent guide.
"editor.guides.highlightActiveIndentation": true,
// Controls whether the editor should render indent guides.
"editor.guides.indentation": true,
// Controls whether the cursor should be hidden in the overview ruler.
"editor.hideCursorInOverviewRuler": false,
// Prefer showing hovers above the line, if there's space.
"editor.hover.above": true,
// Controls the delay in milliseconds after which the hover is shown.
"editor.hover.delay": 300,
// Controls whether the hover is shown.
"editor.hover.enabled": true,
// Controls whether the hover should remain visible when mouse is moved over it.
"editor.hover.sticky": true,
// Enables the inlay hints in the editor.
// - on: Inlay hints are enabled
// - onUnlessPressed: Inlay hints are showing by default and hide when holding `Ctrl+Alt`
// - offUnlessPressed: Inlay hints are hidden by default and show when holding `Ctrl+Alt`
// - off: Inlay hints are disabled
"editor.inlayHints.enabled": "on",
// Controls font family of inlay hints in the editor. When set to empty, the `editor.fontFamily` is used.
"editor.inlayHints.fontFamily": "",
// Controls font size of inlay hints in the editor. As default the `editor.fontSize` is used when the configured value is less than `5` or greater than the editor font size.
"editor.inlayHints.fontSize": 0,
// Enables the padding around the inlay hints in the editor.
"editor.inlayHints.padding": false,
// Controls whether to automatically show inline suggestions in the editor.
"editor.inlineSuggest.enabled": true,
// Insert spaces when pressing `Tab`. This setting is overridden based on the file contents when `editor.detectIndentation` is on.
"editor.insertSpaces": true,
// Defines the bracket symbols that increase or decrease the indentation.
"editor.language.brackets": null,
// Defines the bracket pairs that are colorized by their nesting level if bracket pair colorization is enabled.
"editor.language.colorizedBracketPairs": null,
// Special handling for large files to disable certain memory intensive features.
"editor.largeFileOptimizations": true,
// Controls the letter spacing in pixels.
"editor.letterSpacing": 0,
// Enables the code action lightbulb in the editor.
"editor.lightbulb.enabled": true,
// Controls the line height.
// - Use 0 to automatically compute the line height from the font size.
// - Values between 0 and 8 will be used as a multiplier with the font size.
// - Values greater than or equal to 8 will be used as effective values.
"editor.lineHeight": 0,
// Controls the display of line numbers.
// - off: Line numbers are not rendered.
// - on: Line numbers are rendered as absolute number.
// - relative: Line numbers are rendered as distance in lines to cursor position.
// - interval: Line numbers are rendered every 10 lines.
"editor.lineNumbers": "on",
// Controls whether the editor has linked editing enabled. Depending on the language, related symbols, e.g. HTML tags, are updated while editing.
"editor.linkedEditing": false,
// Controls whether the editor should detect links and make them clickable.
"editor.links": true,
// Highlight matching brackets.
"editor.matchBrackets": "always",
// Lines above this length will not be tokenized for performance reasons
"editor.maxTokenizationLineLength": 20000,
// Controls whether the minimap is shown.
"editor.minimap.enabled": true,
// Limit the width of the minimap to render at most a certain number of columns.
"editor.minimap.maxColumn": 120,
// Render the actual characters on a line as opposed to color blocks.
"editor.minimap.renderCharacters": true,
// Scale of content drawn in the minimap: 1, 2 or 3.
"editor.minimap.scale": 1,
// Controls when the minimap slider is shown.
"editor.minimap.showSlider": "mouseover",
// Controls the side where to render the minimap.
"editor.minimap.side": "right",
// Controls the size of the minimap.
// - proportional: The minimap has the same size as the editor contents (and might scroll).
// - fill: The minimap will stretch or shrink as necessary to fill the height of the editor (no scrolling).
// - fit: The minimap will shrink as necessary to never be larger than the editor (no scrolling).
"editor.minimap.size": "proportional",
// A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events.
"editor.mouseWheelScrollSensitivity": 1,
// Zoom the font of the editor when using mouse wheel and holding `Ctrl`.
"editor.mouseWheelZoom": false,
// Merge multiple cursors when they are overlapping.
"editor.multiCursorMergeOverlapping": true,
// The modifier to be used to add multiple cursors with the mouse. The Go to Definition and Open Link mouse gestures will adapt such that they do not conflict with the multicursor modifier. [Read more](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-modifier).
// - ctrlCmd: Maps to `Control` on Windows and Linux and to `Command` on macOS.
// - alt: Maps to `Alt` on Windows and Linux and to `Option` on macOS.
"editor.multiCursorModifier": "alt",
// Controls pasting when the line count of the pasted text matches the cursor count.
// - spread: Each cursor pastes a single line of the text.
// - full: Each cursor pastes the full text.
"editor.multiCursorPaste": "spread",
// Controls whether the editor should highlight semantic symbol occurrences.
"editor.occurrencesHighlight": true,
// Controls whether a border should be drawn around the overview ruler.
"editor.overviewRulerBorder": true,
// Controls the amount of space between the bottom edge of the editor and the last line.
"editor.padding.bottom": 0,
// Controls the amount of space between the top edge of the editor and the first line.
"editor.padding.top": 0,
// Controls whether the parameter hints menu cycles or closes when reaching the end of the list.
"editor.parameterHints.cycle": false,
// Enables a pop-up that shows parameter documentation and type information as you type.
"editor.parameterHints.enabled": true,
// Controls whether to focus the inline editor or the tree in the peek widget.
// - tree: Focus the tree when opening peek
// - editor: Focus the editor when opening peek
"editor.peekWidgetDefaultFocus": "tree",
// Controls whether suggestions should automatically show up while typing. This can be controlled for typing in comments, strings, and other code. Quick suggestion can be configured to show as ghost text or with the suggest widget.