This is the new font from Microsoft in VSCode. I got the font names
from `fc-list` and tested them by printing some bold, italic, and
bold italic text:
$ ansi() { echo -e "\e[${1}m${*:2}\e[0m"; }
$ bold() { ansi 1 "$@"; }
$ italic() { ansi 3 "$@"; }
$ echo "Some $(bold bold text) next to some $(italic italic text) and some $(bold $(italic bold italic text))."
See: https://askubuntu.com/questions/528928/how-to-do-underline-bold-italic-strikethrough-color-background-and-size-i