forked from lentz/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
92 lines (92 loc) · 2.23 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
{
"terminal.integrated.copyOnSelection": true,
"git.autofetch": true,
"workbench.colorTheme": "Default Light+",
"redhat.telemetry.enabled": true,
"yaml.customTags": [
"!And",
"!And sequence",
"!If",
"!If sequence",
"!Not",
"!Not sequence",
"!Equals",
"!Equals sequence",
"!Or",
"!Or sequence",
"!FindInMap",
"!FindInMap sequence",
"!Base64",
"!Join",
"!Join sequence",
"!Cidr",
"!Ref",
"!Sub",
"!Sub sequence",
"!GetAtt",
"!GetAZs",
"!ImportValue",
"!ImportValue sequence",
"!Select",
"!Select sequence",
"!Split",
"!Split sequence"
],
"aws.suppressPrompts": {
"yamlExtPrompt": true
},
"files.refactoring.autoSave": false,
"editor.detectIndentation": false,
"editor.tabSize": 2,
"gitlens.advanced.externalDiffTool": "",
"files.autoSave": "afterDelay",
"editor.occurrencesHighlight": "off",
"editor.selectionHighlight": false,
"editor.guides.bracketPairs": true,
"aws.codeWhisperer.includeSuggestionsWithCodeReferences": false,
"vim.commandLineModeKeyBindings": [],
"vim.normalModeKeyBindings": [
{
"before": ["[", " "],
"after": ["O", "<Esc>", "j", "0"]
},
{
"before": ["]", " "],
"after": ["o", "<Esc>", "k", "0"]
},
{
"before": ["]", "e"],
"commands": ["editor.action.moveLinesDownAction"]
},
{
"before": ["[", "e"],
"commands": ["editor.action.moveLinesUpAction"]
}
],
"vim.insertModeKeyBindings": [
{
"before": ["j", "k"],
"commands": [
{ "command": "workbench.action.files.save" },
{ "command": "extension.vim_escape" }
]
}
],
"workbench.iconTheme": "vscode-icons",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSaveMode": "modificationsIfAvailable",
"editor.formatOnSave": true,
"quokka.suppressGlyphMarginNotifications": false,
"quokka.syncSettings": false,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.minimap.enabled": false,
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.sideBar.location": "right",
"vsicons.dontShowNewVersionMessage": true
}