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).