From df777edbc20bc6590556f60917faa2549ec3f48d Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 11 Jan 2017 15:23:41 -0800 Subject: [PATCH] [Emacs] Move use system font setting to early --- dotfiles/emacs.d/README.org | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 017a3cb8..7849df6c 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -357,6 +357,12 @@ executable [[http://emacs.stackexchange.com/questions/6010/can-emacs-detect-the- Update: It turns out that it is term-exec-1 that is causing this environment variable to be set to something strange. When I tried to disable it, it seemed to cause issues. Oh well... +** Don't use system font +#+BEGIN_SRC emacs-lisp +;; Let me control my own goddamn fonts +;; XXX: This doesn't seem to work +(setq font-use-system-font nil) +#+END_SRC * Functions ** Join Paths Works in the same way as os.path.join in python @@ -4872,10 +4878,6 @@ load-theme hook (See the heading below). #+BEGIN_SRC emacs-lisp (defvar imalison:linum-format) -;; Let me control my own goddamn fonts -;; XXX: This doesn't seem to work -(setq font-use-system-font nil) - (defun imalison:format-linum (line-text) (propertize (format imalison:linum-format line-text) 'face 'linum))