Skip to content

Instantly share code, notes, and snippets.

@rbeesley
Last active May 1, 2022 09:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rbeesley/3139f03b25f8921c5a28b9bddcece5ad to your computer and use it in GitHub Desktop.
Save rbeesley/3139f03b25f8921c5a28b9bddcece5ad to your computer and use it in GitHub Desktop.
Installing Nerd Fonts
brew tap homebrew/cask-fonts
brew search nerd-font --cask | select -Skip 1 | %{ brew install $_ }
# 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