質問編集履歴
2
追記
title
CHANGED
File without changes
|
body
CHANGED
File without changes
|
1
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -8,14 +8,59 @@
|
|
8
8
|
|
9
9
|
```bash
|
10
10
|
#--settings.jsonファイル
|
11
|
+
"editor.detectIndentation": false,
|
12
|
+
// ウィンドウの端で改行する
|
13
|
+
"editor.wordWrap": "on",
|
14
|
+
// 既定の改行文字 \n => Unix, \r\n => Windows
|
15
|
+
"files.eol": "\n",
|
11
|
-
|
16
|
+
// 既定の文字コード
|
12
|
-
|
17
|
+
"files.encoding": "utf8",
|
18
|
+
// 文字コードを自動で推測する
|
19
|
+
"files.autoGuessEncoding": false,
|
20
|
+
// タブのプレビュー機能を使用しない
|
21
|
+
"workbench.editor.enablePreview": false,
|
22
|
+
// インデントガイドを表示する
|
13
|
-
|
23
|
+
"editor.renderIndentGuides": true,
|
24
|
+
// 制御文字を表示をしない
|
25
|
+
"editor.renderControlCharacters": true,
|
26
|
+
// 自動で閉じ文字を挿入をしない
|
27
|
+
"editor.autoClosingBrackets": false,
|
28
|
+
// 折りたたみ機能を使用しない
|
29
|
+
"editor.folding": false,
|
30
|
+
// カーソル点滅
|
31
|
+
"editor.cursorBlinking": "smooth",
|
32
|
+
// 現在行のハイライト
|
33
|
+
"editor.renderLineHighlight": "all",
|
34
|
+
// ファイルの末尾は改行で終わらせる
|
14
|
-
|
35
|
+
"files.insertFinalNewline": true,
|
36
|
+
// エディターの末尾でスクロールを止めない
|
37
|
+
"editor.scrollBeyondLastLine": false,
|
38
|
+
// 文字の区切り
|
39
|
+
"editor.wordSeparators": "`~!#%^&*()-=+[{]}\\|;:'\",.<>/?",
|
40
|
+
// スクロール量
|
41
|
+
"editor.mouseWheelScrollSensitivity": 3,
|
42
|
+
// HTML 1 行あたりの最大文字数 (0 = 無効にする)
|
43
|
+
"html.format.wrapLineLength": 0,
|
44
|
+
// ミニマップを非表示
|
45
|
+
"editor.minimap.enabled": true,
|
46
|
+
// アクティビティバーを表示する
|
47
|
+
"workbench.activityBar.visible": true,
|
48
|
+
// ステータスバーを表示する
|
49
|
+
"workbench.statusBar.visible": true,
|
50
|
+
// ブレークポイントを使用しない
|
51
|
+
"editor.glyphMargin": false,
|
52
|
+
// 配色テーマ (v1.10から設定可能)
|
53
|
+
"workbench.colorTheme": "Monokai",
|
54
|
+
// ファイルアイコンテーマ (v1.10から設定可能)
|
55
|
+
"workbench.iconheme": "material-icon-theme",
|
56
|
+
// マークダウンプレビューcss
|
15
|
-
|
57
|
+
"markdown.styles": [
|
16
|
-
|
58
|
+
"C:/Users/ユーザ名/.vscode/md_preview.css"
|
17
|
-
|
59
|
+
]
|
18
60
|
}
|
61
|
+
|
62
|
+
|
63
|
+
|
19
64
|
#--.vscode直下にcssファイルを設置
|
20
65
|
~/.vscode/md_preview.css
|
21
66
|
|