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))