From 31e15ace01ca0cc22fecd331ba51f61b5625b07a Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Thu, 20 Apr 2023 13:39:18 +0300 Subject: fix(tazjin/emacs): make font a little bolder Something in recent nixpkgs made things a little ... less bold. This makes them more bold again. It looks vaguely correct after. Change-Id: I6fc60cc1ec2d21d193f46f4d80998f041941add0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8488 Reviewed-by: tazjin Autosubmit: tazjin Tested-by: BuildkiteCI --- users/tazjin/emacs/config/look-and-feel.el | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/users/tazjin/emacs/config/look-and-feel.el b/users/tazjin/emacs/config/look-and-feel.el index 72665d00c67f..2e5c2f94990b 100644 --- a/users/tazjin/emacs/config/look-and-feel.el +++ b/users/tazjin/emacs/config/look-and-feel.el @@ -22,16 +22,7 @@ (blink-cursor-mode -1)) ;; Configure Emacs fonts. -(let ((font (if (equal "frog" (s-trim (shell-command-to-string "hostname"))) - ;; For unclear reasons, frog refuses to render the - ;; regular font weight - everything ends up bold, - ;; which makes it hard to distinguish e.g. read/unread - ;; emails. - ;; - ;; Semi-bold looks a little different than on vauxhall - ;; and other machines, but it's alright. - (format "JetBrains Mono Semi Light-%d" 12) - (format "JetBrains Mono-%d" 12)))) +(let ((font (format "JetBrains Mono Medium-%d" 12))) (setq default-frame-alist `((font . ,font))) (set-frame-font font t t)) -- cgit 1.4.1