From 0f8856421298114777cc293dcfac89540f03ba68 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Wed, 12 Nov 2025 14:00:06 -0600 Subject: feat(fonts): Update default fonts to Berkeley Mono + Lexend MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed default fontaine preset to use Berkeley Mono for fixed-pitch and Lexend for variable-pitch reading. Lexend is specifically designed to improve reading fluency and reduce visual stress for long-form reading. Changes: - Default preset: Berkeley Mono + Lexend - New FiraCode preset: Preserves old defaults (FiraCode + Merriweather) - New BerkeleyMono preset: Berkeley Mono + Charis SIL - Installed fonts: Charis SIL, Bitstream Vera, Literata, Lexend 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- modules/font-config.el | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'modules/font-config.el') diff --git a/modules/font-config.el b/modules/font-config.el index ddd4497f..2438708b 100644 --- a/modules/font-config.el +++ b/modules/font-config.el @@ -53,18 +53,25 @@ (setq fontaine-presets '( (default - :default-family "FiraCode Nerd Font Mono" + :default-family "Berkeley Mono" :default-weight regular :default-height 110 :fixed-pitch-family nil ;; falls back to :default-family :fixed-pitch-weight nil ;; falls back to :default-weight :fixed-pitch-height 1.0 - :variable-pitch-family "Merriweather" - :variable-pitch-weight light + :variable-pitch-family "Lexend" + :variable-pitch-weight regular :variable-pitch-height 1.0) + (FiraCode + :default-family "FiraCode Nerd Font Mono" + :variable-pitch-family "Merriweather" + :variable-pitch-weight light) (Hack :default-family "Hack Nerd Font Mono" :variable-pitch-family "Hack Nerd Font Mono") + (BerkeleyMono + :default-family "Berkeley Mono" + :variable-pitch-family "Charis SIL") (FiraCode-Literata :default-family "Fira Code Nerd Font" :variable-pitch-family "Literata") -- cgit v1.2.3