From 1c9f26e2e17935ecc9500a464c366d32fda8c961 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Wed, 28 Feb 2018 08:47:54 -0800 Subject: [emacs] some visual changes: - change frame title to include filename - bigger fringe - biffer font (again) --- emacs.d/lib/settings.el | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'emacs.d') 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) -- cgit 1.4.1