1
1
mirror of https://github.com/tonsky/FiraCode.git synced 2024-10-04 00:31:49 +03:00

Updated Emacs instructions (markdown)

Juan E. Maya 2018-02-02 13:05:15 +01:00
parent 07983b8565
commit 9ebc4a3b1f

@ -39,14 +39,12 @@ Note! If you get `error in process filter: Attempt to shape unibyte text`, check
;; (46 . ".\\(?:\\(?:\\.[.<]\\)\\|[.=-]\\)") ;; (46 . ".\\(?:\\(?:\\.[.<]\\)\\|[.=-]\\)")
``` ```
If you are using `projectile-ag` and having the error `error in process filter: Attempt to shape unibyte text` you might want to change the font face for your minibuffer. If you are having problems with helm you can disable ligatures in helm:
```elisp ```elisp
(defun my-minibuffer-setup () (add-hook 'helm-major-mode-hook
(set (make-local-variable 'face-remapping-alist) (lambda ()
'((default :family "Menlo")))) (setq auto-composition-mode nil)))
(add-hook 'minibuffer-setup-hook 'my-minibuffer-setup)
``` ```