Last active
May 1, 2022 09:42
-
-
Save rbeesley/3139f03b25f8921c5a28b9bddcece5ad to your computer and use it in GitHub Desktop.
Installing Nerd Fonts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew tap homebrew/cask-fonts | |
brew search nerd-font --cask | select -Skip 1 | %{ brew install $_ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Not perfect since the last character will be blank and it causes an error | |
scoop bucket add nerd-fonts | |
scoop search ".+-NF-.+" | %{ scoop install $( $_ -Split ' ' | Select -Skip 4 -First 1 ) } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment