Update Windows Terminal settings in dev guide.

Signed-off-by: Rafael Kitover <rkitover@gmail.com>
This commit is contained in:
Rafael Kitover 2021-11-10 18:56:15 +00:00
parent b3cc663344
commit 35d4d44a9b
No known key found for this signature in database
GPG Key ID: 08AB596679D86240
1 changed files with 14 additions and 3 deletions

View File

@ -278,14 +278,18 @@ the settings json in visual studio.
In the global settings, above the `"profiles"` section, add:
```json
"copyFormatting": "all",
"focusFollowMouse": true,
// If enabled, selections are automatically copied to your clipboard.
"copyOnSelect": true,
// If enabled, formatted data is also copied to your clipboard
"copyFormatting": true,
"useTabSwitcher": false,
"tabSwitcherMode": "disabled",
"tabWidthMode": "compact",
"wordDelimiters": " ",
"largePasteWarning": false,
"multiLinePasteWarning": false,
"windowingBehavior": "useAnyExisting",
```
In the `"profiles"` `"defaults"` section add:
@ -294,11 +298,18 @@ In the `"profiles"` `"defaults"` section add:
"defaults":
{
// Put settings here that you want to apply to all profiles.
"fontFace": "Hack",
"fontSize": 10,
"adjustIndistinguishableColors": false,
"font":
{
"face": "Hack",
"size": 11
},
"antialiasingMode": "cleartype",
"cursorShape": "filledBox",
"colorScheme": "Tango Dark",
"intenseTextStyle": "bold",
"padding": "0",
"scrollbarState": "hidden"
"closeOnExit": "always"
},
```