diff options
| -rw-r--r-- | init.el | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -24,7 +24,7 @@ "Return existing font which first match." (find-if (lambda (f) (find-font (font-spec :name f))) fonts)) (let ((fontval (font-candidate '"Inconsolata" "Source Code Pro" "Anonymous Pro"))) - (when fontval (set-face-attribute 'default nil :font fontval))) + (when fontval (set-face-attribute 'default nil :font fontval :height 110))) (when (find-font (font-spec :name "Symbola")) (set-fontset-font "fontset-default" nil (font-spec :size 20 :name "Symbola"))) @@ -33,9 +33,7 @@ ;; Initialize package handling: currently using only the official repository and MELPA (setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/") - ;("original" . "http://tromey.com/elpa/") ("org" . "http://orgmode.org/elpa/") - ;("marmalade" . "http://marmalade-repo.org/packages/") ("melpa" . "http://melpa.org/packages/"))) (add-to-list 'load-path (ravi/emacs-file "lisp/")) (add-to-list 'load-path (ravi/emacs-file "site-lisp/")) |
