質問編集履歴

2

追記

2017/09/09 22:10

投稿

roronoazoro
roronoazoro

スコア113

test CHANGED
File without changes
test CHANGED
File without changes

1

追記

2017/09/09 22:10

投稿

roronoazoro
roronoazoro

スコア113

test CHANGED
File without changes
test CHANGED
@@ -18,21 +18,111 @@
18
18
 
19
19
  #--settings.jsonファイル
20
20
 
21
- {
21
+ "editor.detectIndentation": false,
22
22
 
23
- "markdown.preview.fontFamily": "'YuGothic', 'Meiryo', 'SFUIText-Light', 'HelveticaNeue-Light', sans-serif",
23
+ // ウィンドウの端で改行する
24
24
 
25
- "markdown.preview.fontSize": 16,
25
+ "editor.wordWrap": "on",
26
26
 
27
- "markdown.preview.lineHeight": 1.8,
27
+ // 既定の改行文字 \n => Unix, \r\n => Windows
28
28
 
29
- "markdown.styles": [
29
+ "files.eol": "\n",
30
30
 
31
- "C:/Users/<ユザー名>/.vscode/md_preview.css"
31
+ // 既定の文字コ
32
32
 
33
+ "files.encoding": "utf8",
34
+
35
+ // 文字コードを自動で推測する
36
+
37
+ "files.autoGuessEncoding": false,
38
+
39
+ // タブのプレビュー機能を使用しない
40
+
41
+ "workbench.editor.enablePreview": false,
42
+
43
+ // インデントガイドを表示する
44
+
45
+ "editor.renderIndentGuides": true,
46
+
47
+ // 制御文字を表示をしない
48
+
49
+ "editor.renderControlCharacters": true,
50
+
51
+ // 自動で閉じ文字を挿入をしない
52
+
53
+ "editor.autoClosingBrackets": false,
54
+
55
+ // 折りたたみ機能を使用しない
56
+
57
+ "editor.folding": false,
58
+
59
+ // カーソル点滅
60
+
61
+ "editor.cursorBlinking": "smooth",
62
+
63
+ // 現在行のハイライト
64
+
65
+ "editor.renderLineHighlight": "all",
66
+
67
+ // ファイルの末尾は改行で終わらせる
68
+
69
+ "files.insertFinalNewline": true,
70
+
71
+ // エディターの末尾でスクロールを止めない
72
+
73
+ "editor.scrollBeyondLastLine": false,
74
+
75
+ // 文字の区切り
76
+
77
+ "editor.wordSeparators": "`~!#%^&*()-=+[{]}\\|;:'\",.<>/?",
78
+
79
+ // スクロール量
80
+
81
+ "editor.mouseWheelScrollSensitivity": 3,
82
+
83
+ // HTML 1 行あたりの最大文字数 (0 = 無効にする)
84
+
85
+ "html.format.wrapLineLength": 0,
86
+
87
+ // ミニマップを非表示
88
+
89
+ "editor.minimap.enabled": true,
90
+
91
+ // アクティビティバーを表示する
92
+
93
+ "workbench.activityBar.visible": true,
94
+
95
+ // ステータスバーを表示する
96
+
97
+ "workbench.statusBar.visible": true,
98
+
99
+ // ブレークポイントを使用しない
100
+
101
+ "editor.glyphMargin": false,
102
+
103
+ // 配色テーマ (v1.10から設定可能)
104
+
105
+ "workbench.colorTheme": "Monokai",
106
+
107
+ // ファイルアイコンテーマ (v1.10から設定可能)
108
+
109
+ "workbench.iconheme": "material-icon-theme",
110
+
111
+ // マークダウンプレビューcss
112
+
113
+ "markdown.styles": [
114
+
115
+ "C:/Users/ユーザ名/.vscode/md_preview.css"
116
+
33
- ]
117
+ ]
34
118
 
35
119
  }
120
+
121
+
122
+
123
+
124
+
125
+
36
126
 
37
127
  #--.vscode直下にcssファイルを設置
38
128