branch: elpa/monokai-theme
commit 12da0efdce3d5e234ce063fda339079ac4e4278b
Author: Kelvin Smith <[email protected]>
Commit: Kelvin Smith <[email protected]>
Update README with windows org-mode fix
---
README.md | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/README.md b/README.md
index f7c6cce..cf9d743 100644
--- a/README.md
+++ b/README.md
@@ -67,6 +67,20 @@ i.e.:
monokai-yellow "#E5C07B")
```
+## Windows
+
+If your're experiencing font issues using `org-mode` on Windows with emacs 25
try add this to
+your `init.el` or equivalent file:
+
+```lisp
+ (add-hook 'after-init-hook '(lambda () (load-theme 'monokai t)))
+
+ ;; FIX: Invalid font in org-mode on Windows
+ (when (and sys/win32p (> emacs-major-version 24))
+ (add-hook 'window-setup-hook '(lambda () (load-theme 'monokai t))))
+```
+For more info check this thread: [Invalid font in
org-mode](https://github.com/oneKelvinSmith/monokai-emacs/issues/56)
+
# Bugs & Improvements
Please, report any problems that you find on the projects integrated