diff options
-rw-r--r-- | emacs.d/lib/settings.el | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/emacs.d/lib/settings.el b/emacs.d/lib/settings.el index 80dbe8c..75b3a4b 100644 --- a/emacs.d/lib/settings.el +++ b/emacs.d/lib/settings.el @@ -64,10 +64,10 @@ (blink-cursor-mode -1) ;; I don't want a frindge on the right -(fringe-mode '(4 . 0)) +(fringe-mode '(6 . 0)) ;; frame title -(setq frame-title-format '( "%b" " [" (:eval mode-name) "]")) +(setq frame-title-format '( "%f" " [" (:eval mode-name) "]")) ;; where to save custom settings (setq custom-file (expand-file-name "var/emacs-custom.el" user-emacs-directory)) @@ -88,9 +88,7 @@ (global-hl-line-mode 1) ;; Set default font. -(if (string-equal system-type "darwin") - (set-face-attribute 'default nil :font "DejaVu Sans Mono" :height 130 :weight 'normal :width 'normal) - (set-face-attribute 'default nil :font "DejaVu Sans Mono" :height 120 :weight 'normal :width 'normal)) +(set-face-attribute 'default nil :height 150 :weight 'normal :width 'normal :family "Droid Sans Mono") ;; no bell (setq visible-bell nil) |