Skip to content

Instantly share code, notes, and snippets.

@rbeesley
Last active May 14, 2025 23:07
Show Gist options
  • 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
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression
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