From 3567f8bd0a0dcfb0e91eb94d5230e36458a21607 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 19 Jan 2020 02:27:54 +0000 Subject: fix(emacs.d): Use "light" Input font on nugget --- tools/emacs/config/look-and-feel.el | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'tools/emacs') diff --git a/tools/emacs/config/look-and-feel.el b/tools/emacs/config/look-and-feel.el index 98716dde6465..b54bcd1b6ca7 100644 --- a/tools/emacs/config/look-and-feel.el +++ b/tools/emacs/config/look-and-feel.el @@ -21,8 +21,15 @@ (mouse-wheel-mode t) (blink-cursor-mode -1)) -;; Configure editor fonts -(let ((font (format "Input Mono-%d" 12))) +;; Configure Emacs fonts. +;; +;; On nugget, due to some font rendering issues that I haven't managed +;; to debug yet a light version of the Input font needs to be used. +;; Otherwise all text appears in bold, which makes it seem like the +;; weights are somehow messed up. +(let ((font (if (equal "nugget" (s-trim (shell-command-to-string "hostname"))) + (format "Input Mono Light-%d" 12) + (format "Input Mono-%d" 12)))) (setq default-frame-alist `((font-backend . "xft") (font . ,font))) (set-frame-font font t t)) -- cgit 1.4.1