3
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Visual Studio Code をインストールした時に設定すること

Posted at

Visual Studio Code をインストールした時に設定すること

ツールを使うと重要なのは設定ファイルや、必要なプラグインの設定を思いついた時点で記載していきます。

量が増えたら GitHub に纏める予定です。

設定ファイル

ユーザ設定(settings.json)
{
    // カラーテーマを背景色が明るい色のものへ変更する
    "workbench.colorTheme": "Visual Studio Light",

    // フォント サイズをピクセル単位で制御します。
    "editor.fontSize": 12,

    // 有効な場合、ファイルを開くときに文字セット エンコードを推測します。言語ごとに構成することも可能です。
    "files.autoGuessEncoding": true

    // ファイル作成時のデフォルト改行コード
    "files.eol": "\n"
}

インストールするプラグイン

開発環境がリモートにある場合に役立つもの

コーディング規約を揃えるために役立つもの

開発言語ごとの拡張機能

VSCode 標準での開発言語ごとに説明された拡張機能や設定方法を試すのが良いと思われる。

参考情報:https://code.visualstudio.com/docs の Languages

拡張機能の設定例

EditorConfig

.editorconfig
root = true

[*]
indent_style = space
end_of_line = lf
charset = utf-8

[*.{js,jsx,json,yml,yaml}]
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
3
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?