summary refs log tree commit diff
path: root/emacs.d
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2018-02-28 08:47:54 -0800
committerFranck Cuny <franck.cuny@gmail.com>2018-02-28 08:47:54 -0800
commit1c9f26e2e17935ecc9500a464c366d32fda8c961 (patch)
treecd4345fd111ffc3a3b70005ecc43d2308d133e77 /emacs.d
parent[emacs] add support for protobuf (diff)
downloademacs.d-1c9f26e2e17935ecc9500a464c366d32fda8c961.tar.gz
[emacs] some visual changes:
- change frame title to include filename
- bigger fringe
- biffer font (again)
Diffstat (limited to 'emacs.d')
-rw-r--r--emacs.d/lib/settings.el8
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)