From f155ce7e6984d8fe11831cd8a9f89828f5c5be43 Mon Sep 17 00:00:00 2001 From: Dom Charlesworth Date: Thu, 6 Jul 2017 11:05:04 +0100 Subject: [PATCH] [documentation #28] Add a note to use `inhibit-compacting-font-caches` --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 9e1911056..71e770cc8 100644 --- a/README.md +++ b/README.md @@ -179,4 +179,15 @@ Lastly, there is a should give you some ideas of ways to use this library to spruce up other Emacs packages. +### Slow Rendering + +If you experience a slow down in performace when rendering multiple +icons simultaneously, you can try setting the following variable + +```el +(setq inhibit-compacting-font-caches t) +``` + +Some people have found that this [fixes the problem](https://github.com/domtronn/all-the-icons.el/issues/28) + [▲ back to top](#readme)