mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
Change font from 11pt to 10pt
Additionally only attempt to set font when running in a GUI, in a console the terminal emulator controls the font. And cause I can't seem to make up my mind about what font/size combo I like, I'm committing commented out alternatives for reference and potential later use :P
This commit is contained in:
@@ -2,8 +2,16 @@
|
||||
(setq inhibit-startup-message t)
|
||||
|
||||
;; Set default font
|
||||
(set-face-attribute 'default nil :family "Monaco" :height 110)
|
||||
;; (set-face-attribute 'default nil :family "Menlo" :height 110)
|
||||
(if window-system
|
||||
;;; Large
|
||||
;; (set-face-attribute 'default nil :family "Menlo" :height 110)
|
||||
;; (set-face-attribute 'default nil :family "Monaco" :height 110)
|
||||
|
||||
;;; Small
|
||||
(set-face-attribute 'default nil :family "Monaco" :height 100)
|
||||
;; (set-face-attribute 'default nil :family "Menlo" :height 100)
|
||||
;; (set-face-attribute 'default nil :family "Inconsolata" :height 120)
|
||||
)
|
||||
|
||||
;; Load Theme
|
||||
(if window-system (require 'birds-of-paradise-plus-theme)
|
||||
|
||||
Reference in New Issue
Block a user