summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-11-12 14:00:06 -0600
committerCraig Jennings <c@cjennings.net>2025-11-12 14:00:06 -0600
commit0f8856421298114777cc293dcfac89540f03ba68 (patch)
treef35a7d3468cb16a5c302d3a7d56724ed9d5783a0
parent0d659d0d44c465a318acabfafa42cd64dab05cf0 (diff)
feat(fonts): Update default fonts to Berkeley Mono + Lexend
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 <noreply@anthropic.com>
-rw-r--r--modules/font-config.el13
1 files changed, 10 insertions, 3 deletions
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")