-
Notifications
You must be signed in to change notification settings - Fork 1
/
workspace.code-workspace
74 lines (67 loc) · 2.58 KB
/
workspace.code-workspace
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
{
"folders": [
{
"path": "."
},
{
"path": "..\\bible"
},
{
"path": "..\\lidea"
},
{
"path": "..\\fleth"
}
],
"settings": {
"workbench.colorCustomizations": {
"activityBar.background": "#dfdddd",
"activityBar.foreground": "#585858",
"textLink.foreground": "#ff0000",
"activityBar.inactiveForeground": "#aaaaac",
"statusBar.background": "#b6b7b8"
},
"workbench.colorTheme": "Default Light+",
"editor.tabSize": 2,
"editor.fontSize": 13,
"[markdown]": {
"files.trimTrailingWhitespace": false,
"editor.formatOnSave": true,
"editor.formatOnType": true
},
"dart.lineLength": 100,
"dart.enableSdkFormatter": true,
"[dart]": {
// Automatically format code on save and during typing of certain characters
// (like `;` and `}`).
"editor.formatOnSave": true,
"editor.formatOnType": true,
// Draw a guide line at 80 characters, where Dart's formatting will wrap code.
"editor.rulers": [100],
// Disables built-in highlighting of words that match your selection. Without
// this, all instances of the selected text will be highlighted, interfering
// with Dart's ability to highlight only exact references to the selected variable.
"editor.selectionHighlight": false,
// By default, VS Code prevents code completion from popping open when in
// "snippet mode" (editing placeholders in inserted code). Setting this option
// to `false` stops that and allows completion to open as normal, as if you
// weren't in a snippet placeholder.
"editor.suggest.snippetsPreventQuickSuggestions": false,
// By default, VS Code will pre-select the most recently used item from code
// completion. This is usually not the most relevant item.
//
// "first" will always select top item
// "recentlyUsedByPrefix" will filter the recently used items based on the
// text immediately preceding where completion was invoked.
"editor.suggestSelection": "first",
// Allows pressing <TAB> to complete snippets such as `for` even when the
// completion list is not visible.
"editor.tabCompletion": "onlySnippets",
// By default, VS Code will populate code completion with words found in the
// current file when a language service does not provide its own completions.
// This results in code completion suggesting words when editing comments and
// strings. This setting will prevent that.
"editor.wordBasedSuggestions": false,
}
}
}