From a23422d1e95d5250579f10a4097352648fbf4a37 Mon Sep 17 00:00:00 2001 From: qwjyh Date: Sat, 4 Nov 2023 00:20:07 +0900 Subject: [PATCH] new: wt: notes on windows terminal settings --- extra_configs/windows_terminal.md | 59 +++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 extra_configs/windows_terminal.md diff --git a/extra_configs/windows_terminal.md b/extra_configs/windows_terminal.md new file mode 100644 index 0000000..87317ff --- /dev/null +++ b/extra_configs/windows_terminal.md @@ -0,0 +1,59 @@ +# Windows Terminal Settings + +## Quake Mode +Alomost no animation (duration = 1ms). +Use with Fancy Zones in PowerToys to enable fullscreen dropdown (or pop up) terminal. +```json +{ + "actions": + [ + { + "command": + { + "action": "globalSummon", + "desktop": "toCurrent", + "dropdownDuration": 1, + "monitor": "toMouse", + "name": "_quake", + "toggleVisibility": true + }, + "keys": "ctrl+f12" + }, + ] +} +``` + +## Font +Use *Juisee HW* with Nerd Fonts. + +Below is settings for stylistic sets. +Insert this to the "font". +```json +{ + "profiles": + { + "list": + { + [ + "font": + { + "face": "JuiseeHW Nerd Font", + "size": 11.0, + "features": { + "calt": 0, // No contextural alternates + "zero": 1, // slashed zero + "ss08": 0, + "ss20": 0 + } + }, + ] + } + } +} +``` + +### references +- https://juliamono.netlify.app/#stylistic_sets +- https://github.com/tonsky/FiraCode/wiki/How-to-enable-stylistic-sets +- https://learn.microsoft.com/en-us/windows/terminal/customize-settings/profile-appearance#font +