Commit 07c8c509142a

Vincent Demeester <vincent@sbr.pm>
2020-02-19 11:41:52
setup-style: switch back to Ubuntu Mono ๐Ÿ˜…
The main reason is because no italic in Fira Code sadly ๐Ÿ˜“ Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent c53fc2d
Changed files (2)
lisp/setup-style.el
@@ -2,10 +2,7 @@
 ;;; ยฏ\_(ใƒ„)_/ยฏ
 ;;; - Iosevka (https://github.com/be5invis/Iosevka)
 ;;; - Fira Sans (https://github.com/mozilla/Fira/)
-(setq font-height 110)
-(cond
- ((string= (system-name) "hokkaido")
-  (setq font-height 100)))
+(defconst font-height 130)
 ;; Middle/Near East: ืฉืœื•ื, ุงู„ุณู‘ู„ุงู… ุนู„ูŠูƒู…
 (when (member "Noto Sans Arabic" (font-family-list))
   (set-fontset-font t 'arabic "Noto Sans Arabic"))
@@ -17,10 +14,10 @@
   (set-fontset-font t 'ethiopic "Noto Sans Ethiopic"))
 
 (set-face-attribute 'default nil
-                    :family "Fira Code" ; "Overpass Mono" to try someday
+                    :family "Ubuntu Mono"
                     :height font-height)
 (set-face-attribute 'variable-pitch nil
-                    :family "Fira Sans"
+                    :family "Ubuntu Sans"
                     :height font-height
                     :weight 'regular)
 
@@ -29,10 +26,10 @@
   "Reset fonts to my preferences."
   (interactive)
   (set-face-attribute 'default nil
-                      :family "Fira Code"
+                      :family "Ubuntu Mono"
                       :height font-height)
   (set-face-attribute 'variable-pitch nil
-                      :family "Fira Sans"
+                      :family "Ubuntu Sans"
                       :height font-height
                       :weight 'regular))
 
emacs.org
@@ -3556,10 +3556,7 @@
 ;;; ยฏ\_(ใƒ„)_/ยฏ
 ;;; - Iosevka (https://github.com/be5invis/Iosevka)
 ;;; - Fira Sans (https://github.com/mozilla/Fira/)
-(setq font-height 110)
-(cond
- ((string= (system-name) "hokkaido")
-  (setq font-height 100)))
+(defconst font-height 130)
 ;; Middle/Near East: ืฉืœื•ื, ุงู„ุณู‘ู„ุงู… ุนู„ูŠูƒู…
 (when (member "Noto Sans Arabic" (font-family-list))
   (set-fontset-font t 'arabic "Noto Sans Arabic"))
@@ -3571,10 +3568,10 @@
   (set-fontset-font t 'ethiopic "Noto Sans Ethiopic"))
 
 (set-face-attribute 'default nil
-                    :family "Fira Code" ; "Overpass Mono" to try someday
+                    :family "Ubuntu Mono"
                     :height font-height)
 (set-face-attribute 'variable-pitch nil
-                    :family "Fira Sans"
+                    :family "Ubuntu Sans"
                     :height font-height
                     :weight 'regular)
 
@@ -3583,10 +3580,10 @@
   "Reset fonts to my preferences."
   (interactive)
   (set-face-attribute 'default nil
-                      :family "Fira Code"
+                      :family "Ubuntu Mono"
                       :height font-height)
   (set-face-attribute 'variable-pitch nil
-                      :family "Fira Sans"
+                      :family "Ubuntu Sans"
                       :height font-height
                       :weight 'regular))