aboutsummaryrefslogtreecommitdiff
path: root/modules/font-config.el
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
commit8067a43b06f4e253a2b463b50ca19be731098f3b (patch)
tree333a9a0299a44afd1d7bcee721cdb1dbd01b5bf4 /modules/font-config.el
parent98d24e3e85bfd9385dc27d95a6c0ba0a70a12b78 (diff)
downloaddotemacs-8067a43b06f4e253a2b463b50ca19be731098f3b.tar.gz
dotemacs-8067a43b06f4e253a2b463b50ca19be731098f3b.zip
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
Diffstat (limited to 'modules/font-config.el')
-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 ddd4497ff..2438708b1 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")