-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvscode-settings.json
36 lines (36 loc) · 1.07 KB
/
vscode-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
{
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.fontFamily": "Meslo LG S DZ for Powerline",
"workbench.iconTheme": "material-icon-theme",
"scm.defaultViewMode": "tree",
"diffEditor.ignoreTrimWhitespace": false,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.formatOnSave": true,
"editor.bracketPairColorization.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true
},
"go.autocompleteUnimportedPackages": true,
"go.useLanguageServer": true,
"terraform.languageServer": {
"external": true,
"args": [
"serve"
]
},
"[terraform]": {
"editor.formatOnSave": true
},
"[markdown]": {
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
}
}