diff options
-rw-r--r-- | emacs.d/lib/my-settings.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/emacs.d/lib/my-settings.el b/emacs.d/lib/my-settings.el index 2e7e331..ec5c4b6 100644 --- a/emacs.d/lib/my-settings.el +++ b/emacs.d/lib/my-settings.el @@ -47,7 +47,11 @@ ;; I don't want a frindge on the right (fringe-mode '(4 . 0)) -;; Set default font -(set-face-attribute 'default nil :family "Droid Sans Mono" :height 130 :weight 'normal :width 'normal) +;; frame title +(setq frame-title-format '( "%b" " [" (:eval mode-name) "]")) + +;; Set default font. Large font for the main window, but small font for the modeline +(set-face-attribute 'default nil :family "Menlo" :height 150 :weight 'normal :width 'normal) +(set-face-attribute 'mode-line nil :height 120) (provide 'my-settings) |