diff options
author | Raul Benencia <rul@kalgan.cc> | 2023-01-04 10:16:16 -0800 |
---|---|---|
committer | Raul Benencia <rul@kalgan.cc> | 2023-01-04 10:16:16 -0800 |
commit | 9e79943ec035a7e018eb26b70d92b7a1cb8799fb (patch) | |
tree | 457dc2ba61484950be2e2b862a945f89329b92b4 | |
parent | b58bdfcba390778ae8cbfbd19d5c307e1f506820 (diff) |
emacs: redefine fonts sizes
-rw-r--r-- | .emacs.local.d/modes/fonts.el | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/.emacs.local.d/modes/fonts.el b/.emacs.local.d/modes/fonts.el index 08d74d4..c62488c 100644 --- a/.emacs.local.d/modes/fonts.el +++ b/.emacs.local.d/modes/fonts.el @@ -3,25 +3,23 @@ (setq fontaine-presets '((tiny :default-family "Fira Code Retina" - :default-height 70) + :default-height 100) (small :default-family "Fira Code Retina" - :default-height 90) - (regular - :default-height 110) - (medium :default-height 120) + (medium + :default-height 160) (large :default-weight semilight - :default-height 140 + :default-height 180 :bold-weight extrabold) (presentation :default-weight semilight - :default-height 170 + :default-height 200 :bold-weight extrabold) (jumbo :default-weight semilight - :default-height 220 + :default-height 230 :bold-weight extrabold) (t :default-family "Fira Code Retina" |