Commit e75babf65ce9

Vincent Demeester <vincent@sbr.pm>
2018-09-07 18:06:20
Add hokkaido cases to font size attributes
… and use `cond` instead of `when` :) Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 290aa78
Changed files (1)
lisp/vde-style.el
@@ -4,8 +4,11 @@
 ;; - Iosevka (https://github.com/be5invis/Iosevka)
 ;; - Fira Sans (https://github.com/mozilla/Fira/)
 (setq font-height 110)
-(when (string= system-name "shikoku")
-  (setq font-height 140))
+(cond
+ ((string= system-name "hokkaido")
+  (setq font-height 100))
+ ((string= system-name "shikoku")
+  (setq font-height 140)))
 
 (set-face-attribute 'default nil
 		    :family "Fira Code"