---
lang: ja-jp
breaks: true
---
# Azure Data Studio の設定 2021-05-12
> Visual Studio Code Color Theme Guide
> https://sw27.net/vsc/color-theme-guide/index.ja.html
## キーボードショートカット

## ユーザ設定




### settings.json
```json=
"workbench.colorTheme": "Default Dark Azure Data Studio",
"editor.mouseWheelZoom": true,
"editor.fontFamily": "Myrica M",
"window.zoomLevel": 0,
"workbench.startupEditor": "welcomePage",
"resultsGrid.fontFamily": "Meiryo UI",
"editor.tokenColorCustomizations": {
"[Default Dark Azure Data Studio]": {
"comments": "#54ff10"
}
},
"workbench.colorCustomizations": {
"editor.selectionHighlightBorder": "#c0e637",
"editor.findMatchHighlightBorder": "#ff0000",
// 入力候補のポップアップ
"editorSuggestWidget.selectedBackground": "#ff3ce579",
"editorCursor.foreground": "#ffffff",
} ,
"editor.minimap.showSlider": "always",
"editor.minimap.size": "fill",
"editor.minimap.renderCharacters": false, // ミニマップを簡略化
"editor.renderIndentGuides": true, // インデントのガイドラインを表示
"editor.codeLens": true,
"editor.renderLineHighlight": "all", // 選択中の行を強調する
"editor.roundedSelection": true, // 選択範囲の角を丸める
"editor.letterSpacing": 0, // 文字の間隔を詰める
"editor.lineHeight": 16, // 文字の間隔を詰める
"editor.scrollBeyondLastLine": true, // 最終行よりも下へのスクロールを許可
"editor.cursorStyle": "line", // カーソルの形状
"editor.cursorBlinking": "smooth", // カーソルの表示形式
"editor.cursorWidth": 3, // カーソル幅
"editor.minimap.enabled": true, // ミニマップの表示
//"editor.minimap.maxColumn": 40, // ミニマップの幅
```
###### tags: `Azure Data Studio`