Skip to content

Instantly share code, notes, and snippets.

@jpogran
Created July 3, 2019 19:25
Show Gist options
  • Save jpogran/685a6d5a074252c80682ca378cee7435 to your computer and use it in GitHub Desktop.
Save jpogran/685a6d5a074252c80682ca378cee7435 to your computer and use it in GitHub Desktop.
Setup pwsh, Windows Terminal and VSCode with patched Fonts

install these fonts

'https://github.com/haasosaurus/nerd-fonts/blob/regen-mono-font-fix/patched-fonts/LiberationMono/complete/Literation%20Mono%20Nerd%20Font%20Complete%20Mono%20Windows%20Compatible.ttf' 'https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/FiraCode/Retina/complete/Fura%20Code%20Retina%20Nerd%20Font%20Complete%20Mono%20Windows%20Compatible.ttf' 'https://github.com/tonsky/FiraCode/releases/download/1.206/FiraCode_1.206.zip'

windows terminal

"fontFace" : "LiterationMono NF"

vscode

"editor.fontFamily": "Fira Code Retina",
"editor.fontLigatures": true,
"terminal.integrated.fontFamily": "FuraCode NF Retina Medium",

pwsh console

# Note, this still doesn't display hamburger menu for some reason
# run as admin
$key = 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\TrueTypeFont'
Set-ItemProperty -Path $key -Name '000' -Value 'LiberationMono NF'
# restart
# start pwsh from shortcut you want to continue to use
# choose 'LiberationMono NF' and save
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment