# Windows Terminal Tips ## Metadata **Status**:: #x **Zettel**:: #zettel/fleeting **Created**:: [[2024-04-10]] ## Synopsis ⚡ Config file location ``` $WindowsTerminalSetting = "$env:USERPROFILE\AppData\Local\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json" vim $WindowsTerminalSetting ``` ⚡ Font The default font is `Cascadia Mono` which does not support ligature. It is easy to enable it by set the font to `Cascadia Code` in any profile. ``` "fontFace": "Cascadia Code", ``` ⚡ Cursor The cursor settings are not in the `colorScheme`. ``` "cursorColor": "#005f87", "cursorShape": "vintage", ```