コンテンツにスキップ

vscode setting file

 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
{
  /* エディター */
  // フォントサイズ
  "editor.fontSize": 18,
  // インライン候補
  "editor.inlineSuggest.enabled": true,
  // 角括弧
  "editor.bracketPairColorization.enabled": true,
  // アクセシビリティ
  "editor.accessibilitySupport": "off",
  // 起動時の画面
  "window.restoreWindows": "none",
  // ウェルカムページを表示
  "workbench.startupEditor": "welcomePage",
  // アイコン
  "workbench.iconTheme": "vscode-icons",
  // テーマ
  "workbench.colorTheme": "Default Dark+",

  /* ファイルツリー */
  // インデントガイド
  "workbench.tree.renderIndentGuides": "always",
  // インデントサイズ
  "workbench.tree.indent": 16,

  /* 拡張子毎の設定 */
  "files.associations": {
    "*.gs": "javascript"
  },

  /* 拡張機能 */

  // C#
  "dotnet.codeLens.enableReferencesCodeLens": false,

  // Markdown
  "markdownlint.config": {
    "MD033": false
  },

  // drawio
  "hediet.vscode-drawio.resizeImages": null,

  // powermode
  "powermode.enabled": true,
  "powermode.shake.intensity": 1,

  // diff
  "diffEditor.ignoreTrimWhitespace": false,
  "[yaml]": {
    "diffEditor.ignoreTrimWhitespace": true
  },
  "[markdown]": {
    "diffEditor.ignoreTrimWhitespace": true
  },

  // github copilot
  "github.copilot.enable": {
    "*": true,
    "plaintext": true,
    "markdown": true,
    "scminput": false,
    "yaml": true
  }
}