From doomemacs/doomemacs#2575 (comment):
Here are easy steps to get that done
- Start emacs
- M-x all-the-icons-install-fonts Provide a temp directory where you'd like the fonts to be downloaded (let's call it $tempFonts)
Then, using Powershell, you can install them for your user with this:
cd $tempFonts $destination = (New-Object -ComObject Shell.Application).Namespace(0x14) ls *.ttf | % { $destination.CopyHere($_.FullName, 0x10) } This takes a couple of seconds to complete, and you should see a pop-up for each font telling you that it is being installed.