Giter Club home page Giter Club logo

sfmono-nerd-font-ligaturized's Introduction

SFMono-Nerd-Font-Ligaturized

This repository contains pre-patched opentype versions of macOS's SFMono fonts with support for Ligatures and Nerd Fonts.

Showcase

image

image

Installation

Manual

Linux

Copy all of the font files to ~/.local/share/fonts

git clone https://github.com/shaunsingh/SFMono-Nerd-Font-Ligaturized.git && cd SFMono-Nerd-Font-Ligaturized
cp *.otf ~/.local/share/fonts

MacOS

  1. Either clone or download and unzip this repository
  2. Highlight and double-click to install all .otf files with Font Book

Homebrew

Needs a working installation of brew

brew tap shaunsingh/SFMono-Nerd-Font-Ligaturized
brew install --cask font-sf-mono-nerd-font-ligaturized

Nix (flake)

Add this repo as an input

inputs = {
  # SFMono w/ patches
  sf-mono-liga-src = {
    url = "github:shaunsingh/SFMono-Nerd-Font-Ligaturized";
    flake = false;
  };
};

Then add the following overlay

(final: prev: {
  sf-mono-liga-bin = prev.stdenvNoCC.mkDerivation rec {
    pname = "sf-mono-liga-bin";
    version = "dev";
    src = inputs.sf-mono-liga-src;
    dontConfigure = true;
    installPhase = ''
      mkdir -p $out/share/fonts/opentype
      cp -R $src/*.otf $out/share/fonts/opentype/
    '';
  };
}) 

Now you can install sf-mono-liga-bin as normal

fonts = {
  fonts = with pkgs; [ sf-mono-liga-bin ];
};

Features

Contains the following Iconsets:

  • fontawesome
  • fontawesomeextentions
  • fontlogos
  • octicons
  • codicons
  • pomicons
  • powerline (height adjusted)
  • powerlineextra (height adjusted)
  • material
  • weather

Ligatures are from FiraCode v3.1

sfmono-nerd-font-ligaturized's People

Contributors

shaunsingh avatar vulfpeck avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.