forked from paulirish/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvscode-settings.json
79 lines (79 loc) · 2.4 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
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
{
"workbench.colorTheme": "One Monokai",
"workbench.colorCustomizations": {
"[One Monokai]": {}
},
"editor.fontFamily": "Hack, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 14,
"editor.minimap.enabled": false,
"editor.tabSize": 2,
"editor.insertSpaces": false,
"files.exclude": {
"_site": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.sass-cache": true,
"**/.svn": true,
"**/.terraform": true,
"**/*.tfplan": true,
"**/CVS": true,
"**/node_modules": true
},
"files.trimTrailingWhitespace": true,
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontWeight": "400",
"terminal.integrated.fontWeightBold": "500",
"terminal.integrated.lineHeight": 1.2,
"workbench.iconTheme": "material-icon-theme",
"sublimeTextKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": false,
"files.associations": {
"*.tmpl": "html",
"*.html.erb": "html"
},
"merge-conflict.codeLens.enabled": false,
"merge-conflict.decorators.enabled": false,
"debug.javascript.codelens.npmScripts": "never",
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true,
"files.hotExit": "off",
"editor.wordWrap": "on",
"window.openFoldersInNewWindow": "on",
"[markdown]": {
"files.trimTrailingWhitespace": false
},
"[terraform]": {
"editor.tabSize": 2,
"editor.formatOnSave": true
},
"emmet.showAbbreviationSuggestions": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"plantuml.render": "PlantUMLServer",
"plantuml.server": "http://localhost:8080",
"plantuml.exportOutDir": ".",
"plantuml.exportFormat": "png",
"plantuml.exportSubFolder": false,
"search.exclude": {
"**/docs": true
},
"breadcrumbs.enabled": false,
"workbench.editor.showTabs": true,
"editor.renderIndentGuides": true,
"editor.renderWhitespace": "none",
"markdown.extension.toc.updateOnSave": false,
"extensions.ignoreRecommendations": true,
"explorer.confirmDragAndDrop": false,
"[bicep]": {
"editor.tabSize": 2,
"editor.insertSpaces": true,
"files.insertFinalNewline": true,
"editor.suggestSelection": "first",
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggest.showWords": false
},
"security.workspace.trust.enabled": false,
"workbench.startupEditor": "none"
}