Skip to content

danielbayley/homebrew-fonts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Homebrew Fonts

Extra fonts with Homebrew.

Install

brew tap danielbayley/fonts
brew cask install #font-token

system_profiler SPFontsDataType will give you a list of installed fonts with detailed information, including the PostScript name you might need for your preferred editor or terminal. Using Fira Code for example, system_profiler SPFontsDataType | grep Fira would give you FiraCode-Retina. You can also run fc-scan --format %{postscriptname} directly on the font file.

Atom:

# ${ATOM_HOME:-~/.atom}/config.cson
editor:
  fontFamily: "FiraCode-Retina, monospace"

VS Code:

// ${VSCODE_APPDATA:-~/Library/Application Support}/{Code,VSCodium}/User/settings.json
"editor.fontFamily": "FiraCode-Retina, monospace",
"editor.fontLigatures": true,

Hyper:

// ~/.hyper.js
fontFamily: 'FiraCode-Retina, monospace',

git config core.hooksPath .github/hooks and follow the contribution guide, or copy and adapt an existing Cask.

License

MIT © Daniel Bayley