質問編集履歴
3
setting.jsonファイル更新
test
CHANGED
File without changes
|
test
CHANGED
@@ -30,6 +30,68 @@
|
|
30
30
|
|
31
31
|
```json
|
32
32
|
|
33
|
+
{
|
34
|
+
|
35
|
+
"editor.fontSize": 15,
|
36
|
+
|
37
|
+
"editor.renderWhitespace": "all",
|
38
|
+
|
39
|
+
"emmet.triggerExpansionOnTab": true,
|
40
|
+
|
41
|
+
"editor.minimap.showSlider": "always",
|
42
|
+
|
43
|
+
"editor.minimap.renderCharacters": false,
|
44
|
+
|
45
|
+
"editor.hover.enabled": false,
|
46
|
+
|
47
|
+
"window.title": "${dirty}\${activeEditorMedium}${separator}${rootName}",
|
48
|
+
|
49
|
+
"editor.minimap.side": "left",
|
50
|
+
|
51
|
+
"workbench.tree.indent": 25,
|
52
|
+
|
53
|
+
"workbench.tree.renderIndentGuides": "always",
|
54
|
+
|
55
|
+
"editor.insertSpaces": false,
|
56
|
+
|
57
|
+
"editor.bracketPairColorization.enabled": true,
|
58
|
+
|
59
|
+
"workbench.iconTheme": "vscode-icons",
|
60
|
+
|
61
|
+
"workbench.colorTheme": "Solarized Dark",
|
62
|
+
|
63
|
+
"editor.formatOnSave": true,
|
64
|
+
|
65
|
+
"explorer.confirmDragAndDrop": false,
|
66
|
+
|
67
|
+
"explorer.confirmDelete": false,
|
68
|
+
|
69
|
+
"liveServer.settings.donotShowInfoMsg": true,
|
70
|
+
|
71
|
+
"editor.suggestSelection": "first",
|
72
|
+
|
73
|
+
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
|
74
|
+
|
75
|
+
"ruby.intellisense": "rubyLocate",
|
76
|
+
|
77
|
+
"ruby.useLanguageServer": true,
|
78
|
+
|
79
|
+
"ruby.rubocop.useBundler": true,
|
80
|
+
|
81
|
+
"ruby.format": "rubocop",
|
82
|
+
|
83
|
+
"ruby.lint": {
|
84
|
+
|
85
|
+
"rubocop": {
|
86
|
+
|
87
|
+
"useBundler": false
|
88
|
+
|
89
|
+
}
|
90
|
+
|
91
|
+
},
|
92
|
+
|
93
|
+
"workbench.settings.useSplitJSON": true,
|
94
|
+
|
33
95
|
"files.associations": {
|
34
96
|
|
35
97
|
"*.erb": "erb"
|
@@ -46,7 +108,17 @@
|
|
46
108
|
|
47
109
|
"workbench.editor.enablePreviewFromQuickOpen": false,
|
48
110
|
|
111
|
+
"solargraph.commandPath": "solargraphのPATH",
|
49
112
|
|
113
|
+
"ruby.intellisense": "rubyLocate",
|
114
|
+
|
115
|
+
"window.zoomLevel": 1,
|
116
|
+
|
117
|
+
"html-css-class-completion.enableEmmetSupport": true,
|
118
|
+
|
119
|
+
"tailwindCSS.emmetCompletions": true
|
120
|
+
|
121
|
+
}
|
50
122
|
|
51
123
|
```
|
52
124
|
|
@@ -54,4 +126,4 @@
|
|
54
126
|
|
55
127
|
参考にした記事は以下のものです
|
56
128
|
|
57
|
-
[
|
129
|
+
[VSCodeで、erbでもhtml拡張機能を使いたい](https://teratail.com/questions/163008)
|
2
参考記事の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -49,3 +49,9 @@
|
|
49
49
|
|
50
50
|
|
51
51
|
```
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
参考にした記事は以下のものです
|
56
|
+
|
57
|
+
[リンク内容](https://teratail.com/questions/163008)
|
1
codeを追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -25,3 +25,27 @@
|
|
25
25
|
|
26
26
|
|
27
27
|
vscodeの拡張機能"erb"も入れ直しました。
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
```json
|
32
|
+
|
33
|
+
"files.associations": {
|
34
|
+
|
35
|
+
"*.erb": "erb"
|
36
|
+
|
37
|
+
},
|
38
|
+
|
39
|
+
"emmet.includeLanguages": {
|
40
|
+
|
41
|
+
"erb": "html"
|
42
|
+
|
43
|
+
},
|
44
|
+
|
45
|
+
"workbench.editor.enablePreview": false,
|
46
|
+
|
47
|
+
"workbench.editor.enablePreviewFromQuickOpen": false,
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
```
|