From df35b8587d6fc468cd1c7eda8184822717458fb2 Mon Sep 17 00:00:00 2001 From: Karl Erik Holter Date: Mon, 3 Aug 2020 14:01:40 +0200 Subject: [PATCH] Added link and minimal setup for package implementing second emacs solution. --- Emacs-instructions.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Emacs-instructions.md b/Emacs-instructions.md index 6af6a76..b5e8bce 100644 --- a/Emacs-instructions.md +++ b/Emacs-instructions.md @@ -25,6 +25,14 @@ This is generally the easiest solution, but can only be used on macOS. ### Using prettify-symbols +Note: [fira-code-mode](https://github.com/jming422/fira-code-mode) is a MELPA package implementing something similar to this solution, meaning you can implement the below by installing the Fira Code Symbol font and by using the following snippet: +```elisp +(use-package fira-code-mode + :custom (fira-code-mode-disabled-ligatures '("[]" "x")) ; ligatures you don't want + :hook prog-mode) ; mode to enable fira-code-mode in +``` + + These instructions are pieced together by [@Triavanicus](https://github.com/Triavanicus), taking some pieces from: [Hasklig-Mode](https://github.com/minad/hasklig-mode).