-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode-setting.json
53 lines (53 loc) · 1.59 KB
/
vscode-setting.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
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "One Monokai",
"workbench.colorCustomizations": {
"terminal.foreground": "#ffffff",
// "terminal.background": "#323232",
"terminal.ansiBlack": "#353535",
"terminal.ansiBlue": "#6c99bb",
"terminal.ansiCyan": "#bed6ff",
"terminal.ansiGreen": "#a5c261",
"terminal.ansiMagenta": "#d197d9",
"terminal.ansiRed": "#d25252",
"terminal.ansiWhite": "#eeeeec",
"terminal.ansiYellow": "#ffc66d",
"terminal.ansiBrightBlack": "#535353",
"terminal.ansiBrightBlue": "#8ab7d9",
"terminal.ansiBrightCyan": "#dcf4ff",
"terminal.ansiBrightGreen": "#c2e075",
"terminal.ansiBrightMagenta": "#efb5f7",
"terminal.ansiBrightRed": "#f00c0c",
"terminal.ansiBrightWhite": "#ffffff",
"terminal.ansiBrightYellow": "#e1e48b"
},
"terminal.integrated.rendererType": "dom",
"terminal.integrated.fontFamily": "Inconsolata for Powerline",
"terminal.integrated.fontSize": 14,
"todo-tree.tree.showScanModeButton": false,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.renderWhitespace": "boundary",
// Custom tags for the parser to use
"yaml.customTags": [
"!And",
"!If",
"!Not",
"!Equals",
"!Or",
"!FindInMap sequence",
"!Base64",
"!Cidr",
"!Ref",
"!Sub",
"!GetAtt",
"!GetAZs",
"!ImportValue",
"!Select",
"!Select sequence",
"!Split",
"!Join sequence"
],
// Enable/disable default YAML formatter (requires restart)
"yaml.format.enable": true,
}