質問編集履歴
3
setting.jsonファイル更新
title
CHANGED
File without changes
|
body
CHANGED
@@ -14,6 +14,37 @@
|
|
14
14
|
vscodeの拡張機能"erb"も入れ直しました。
|
15
15
|
|
16
16
|
```json
|
17
|
+
{
|
18
|
+
"editor.fontSize": 15,
|
19
|
+
"editor.renderWhitespace": "all",
|
20
|
+
"emmet.triggerExpansionOnTab": true,
|
21
|
+
"editor.minimap.showSlider": "always",
|
22
|
+
"editor.minimap.renderCharacters": false,
|
23
|
+
"editor.hover.enabled": false,
|
24
|
+
"window.title": "${dirty}\${activeEditorMedium}${separator}${rootName}",
|
25
|
+
"editor.minimap.side": "left",
|
26
|
+
"workbench.tree.indent": 25,
|
27
|
+
"workbench.tree.renderIndentGuides": "always",
|
28
|
+
"editor.insertSpaces": false,
|
29
|
+
"editor.bracketPairColorization.enabled": true,
|
30
|
+
"workbench.iconTheme": "vscode-icons",
|
31
|
+
"workbench.colorTheme": "Solarized Dark",
|
32
|
+
"editor.formatOnSave": true,
|
33
|
+
"explorer.confirmDragAndDrop": false,
|
34
|
+
"explorer.confirmDelete": false,
|
35
|
+
"liveServer.settings.donotShowInfoMsg": true,
|
36
|
+
"editor.suggestSelection": "first",
|
37
|
+
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
|
38
|
+
"ruby.intellisense": "rubyLocate",
|
39
|
+
"ruby.useLanguageServer": true,
|
40
|
+
"ruby.rubocop.useBundler": true,
|
41
|
+
"ruby.format": "rubocop",
|
42
|
+
"ruby.lint": {
|
43
|
+
"rubocop": {
|
44
|
+
"useBundler": false
|
45
|
+
}
|
46
|
+
},
|
47
|
+
"workbench.settings.useSplitJSON": true,
|
17
48
|
"files.associations": {
|
18
49
|
"*.erb": "erb"
|
19
50
|
},
|
@@ -22,8 +53,13 @@
|
|
22
53
|
},
|
23
54
|
"workbench.editor.enablePreview": false,
|
24
55
|
"workbench.editor.enablePreviewFromQuickOpen": false,
|
25
|
-
|
56
|
+
"solargraph.commandPath": "solargraphのPATH",
|
57
|
+
"ruby.intellisense": "rubyLocate",
|
58
|
+
"window.zoomLevel": 1,
|
59
|
+
"html-css-class-completion.enableEmmetSupport": true,
|
60
|
+
"tailwindCSS.emmetCompletions": true
|
61
|
+
}
|
26
62
|
```
|
27
63
|
|
28
64
|
参考にした記事は以下のものです
|
29
|
-
[
|
65
|
+
[VSCodeで、erbでもhtml拡張機能を使いたい](https://teratail.com/questions/163008)
|
2
参考記事の追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -23,4 +23,7 @@
|
|
23
23
|
"workbench.editor.enablePreview": false,
|
24
24
|
"workbench.editor.enablePreviewFromQuickOpen": false,
|
25
25
|
|
26
|
-
```
|
26
|
+
```
|
27
|
+
|
28
|
+
参考にした記事は以下のものです
|
29
|
+
[リンク内容](https://teratail.com/questions/163008)
|
1
codeを追加しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -11,4 +11,16 @@
|
|
11
11
|
上記の設定で他の方はうまくemmetを使用できるようになっているようなのですが、
|
12
12
|
私のvscodeではうまくいきませんでした。
|
13
13
|
|
14
|
-
vscodeの拡張機能"erb"も入れ直しました。
|
14
|
+
vscodeの拡張機能"erb"も入れ直しました。
|
15
|
+
|
16
|
+
```json
|
17
|
+
"files.associations": {
|
18
|
+
"*.erb": "erb"
|
19
|
+
},
|
20
|
+
"emmet.includeLanguages": {
|
21
|
+
"erb": "html"
|
22
|
+
},
|
23
|
+
"workbench.editor.enablePreview": false,
|
24
|
+
"workbench.editor.enablePreviewFromQuickOpen": false,
|
25
|
+
|
26
|
+
```
|