emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/monokai-theme 12da0ef 133/207: Update README with windows


From: ELPA Syncer
Subject: [nongnu] elpa/monokai-theme 12da0ef 133/207: Update README with windows org-mode fix
Date: Thu, 21 Oct 2021 18:07:47 -0400 (EDT)

branch: elpa/monokai-theme
commit 12da0efdce3d5e234ce063fda339079ac4e4278b
Author: Kelvin Smith <oneKelvinSmith@gmail.com>
Commit: Kelvin Smith <oneKelvinSmith@gmail.com>

    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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]