Lean Engineer

リーンエンジニア〜効率的に実験しながら、技術を学ぶブログ

Visual Studio Codeで設定しているユーザー設定

 エディタはVisual Studio Codeを使っているのですが、Atomより軽いのが良いですね。あと、設定が楽チンでいいですね。今のところ、こんな感じで使っています。複雑になりすぎると、めんどくさくなるので最小限で。フォーマットを自動でしてくれるのは楽でいいですなぁ。

{
  "editor.formatOnType": true,
  "editor.formatOnPaste": true,
  "editor.formatOnSave": true,
  "editor.tabSize": 2,
  "editor.renderWhitespace": "boundary",
  "editor.minimap.enabled": false,
  "window.zoomLevel": 0,
  "terminal.integrated.shell.osx": "/usr/local/bin/zsh",
  "python.venvPath": "~/.virtualenvs",
}