1
1

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をカスタマイズします

*Visual Studio Code / git はHomebrewでインストール済み
*npm はNodebrewでインストール済み

1.日本語化します

Marketplace

2.アイコンを Material Icon Theme にします

iTerm
git clone https://github.com/PKief/vscode-material-icon-theme.git ~/.vscode/extensions/material-icon
cd ~/.vscode/extensions/material-icon
npm install
npm run build

3.インデントを Indent-Rainbow にします

iTerm
git clone https://github.com/oderwat/vscode-indent-rainbow.git ~/.vscode/extensions/indent-rainbow
cd ~/.vscode/extensions/indent-rainbow
npm install
npm run vscode:prepublish

4.括弧の対チェック等を Bracket Pair Colorizer 2 (Beta) にします

iTerm
git clone https://github.com/CoenraadS/Bracket-Pair-Colorizer-2.git ~/.vscode/extensions/Bracket-Pair-Colorizer-2
cd ~/.vscode/extensions/Bracket-Pair-Colorizer-2
npm install
npm audit fix
npm audit
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?