コンテンツにスキップ

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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
  /* エディター */
  // フォントサイズ
  "editor.fontSize": 18,
  // インライン候補
  "editor.inlineSuggest.enabled": true,
  // 角括弧
  "editor.bracketPairColorization.enabled": true,
  // アクセシビリティ
  "editor.accessibilitySupport": "off",
  // フォントの種類
  "editor.fontFamily": "BIZ UDゴシック",
  // フォントの太さ
  "editor.fontWeight": "normal",

  // 起動時の画面
  "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"
  },

  /* 言語毎の設定 */
  "[html]": {
    "editor.defaultFormatter": "vscode.html-language-features"
  },
  "[markdown]": {
    "diffEditor.ignoreTrimWhitespace": true
  },
  "[yaml]": {
    "diffEditor.ignoreTrimWhitespace": true
  },

  /* 拡張機能 */

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

  // cmake
  "cmake.pinnedCommands": [
    "workbench.action.tasks.configureTaskRunner",
    "workbench.action.tasks.runTask"
  ],

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

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

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

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