1
1
mirror of https://github.com/tonsky/FiraCode.git synced 2024-07-04 16:06:26 +03:00

Added link and minimal setup for package implementing second emacs solution.

Karl Erik Holter 2020-08-03 14:01:40 +02:00
parent c254d73627
commit df35b8587d

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