ICT Diary

Network(主にCisco系)、Server(RedHat系)、Program(適当)を気まぐれにUPしていく。

丸ごとコピペ用基本設定 part1

コピペ用設定



Visual Studio Code使える基本設定 part1の設定をコピペ出来るようにまとめたもの

設定内容

  • 空白の表示:表示
  • 右端で折り返し:有効
  • ミニマップ表示:表示
  • [Ctrl]ズーム機能:有効
  • ドラッグ&ドロップ機能:無効
  • ファイル作成時のタブの位置:一番右
  • ブレイクポイント:有効
  • 文字コードutf-8
  • ウィンドウタイトル:現在作業中のファイルの絶対パス
  • インデントガイド:ガイド表示

Code

"editor.renderWhitespace": "all",
"editor.wordWrap": "on",
"editor.minimap.enabled": true,
"editor.mouseWheelZoom": true,
"editor.dragAndDrop": false,
"workbench.editor.openPositioning": "last",
"debug.allowBreakpointsEverywhere": true,
"files.encoding": "utf8",
"window.title": " ${activeEditorLong}",
"editor.renderIndentGuides": true,