aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2019-01-29 20:03:11 -0500
committerJakob Odersky <jakob@odersky.com>2019-01-29 20:03:11 -0500
commita350e7bdff6f54383c220792753805deee3ef1b2 (patch)
tree515682137d9568ef1069bbb72193c33c2213587e
parentf62af1d6a31b2130049f5659d4968a9985851b11 (diff)
downloaddotfiles-a350e7bdff6f54383c220792753805deee3ef1b2.tar.gz
dotfiles-a350e7bdff6f54383c220792753805deee3ef1b2.tar.bz2
dotfiles-a350e7bdff6f54383c220792753805deee3ef1b2.zip
Use ubuntu font
-rw-r--r--home/.emacs.d/init.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/home/.emacs.d/init.el b/home/.emacs.d/init.el
index afb24ff..5db3680 100644
--- a/home/.emacs.d/init.el
+++ b/home/.emacs.d/init.el
@@ -18,8 +18,10 @@
(global-auto-revert-mode t)
;; font
+(add-to-list 'default-frame-alist '(font . "Ubuntu Mono" ))
+(set-face-attribute 'default t :font "Ubuntu Mono")
; value is in 1/10pt, so 100 will give you 10pt, etc.
-(set-face-attribute 'default nil :height 110)
+(set-face-attribute 'default nil :height 130)
;; simplify questions
(defalias 'yes-or-no-p 'y-or-n-p)