From 70ac5ec15e0239b5ab94f2553eb61a33d5988780 Mon Sep 17 00:00:00 2001 From: Soonho Kong Date: Fri, 5 Sep 2014 15:20:41 -0700 Subject: [PATCH] feat(emacs/README.md): add instruction for unicode font --- src/emacs/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/emacs/README.md b/src/emacs/README.md index f313b112a..757eb10ee 100644 --- a/src/emacs/README.md +++ b/src/emacs/README.md @@ -61,6 +61,14 @@ Put the following elisp code on your emacs setup (e.g. ``.emacs.d/init.el``): (customize-set-variable 'lean-eldoc-use t) ``` +If experience a problem reading unicode characters on emacs, consider +having the following setup: + +```elisp +(when (member "DejaVu Sans Mono" (font-family-list)) + (set-face-attribute 'default nil :font "DejaVu Sans Mono-11")) +``` + Key Bindings ------------