diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2017-02-27 09:43:28 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2017-02-27 09:43:28 -0800 |
commit | 3e118596e2ac15ace009b947395e96059834bc07 (patch) | |
tree | 53b2156e5d47d2699d6df5350336a784a3fa5b97 | |
parent | [Emacs] Change the theme for spaceline. (diff) | |
download | emacs.d-3e118596e2ac15ace009b947395e96059834bc07.tar.gz |
[Emacs] Enable global highlight and fix font.
-rw-r--r-- | emacs.d/lib/settings.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/emacs.d/lib/settings.el b/emacs.d/lib/settings.el index 66aa9b4..bfec7f7 100644 --- a/emacs.d/lib/settings.el +++ b/emacs.d/lib/settings.el @@ -84,8 +84,11 @@ ;; cursor is a thin bar (setq-default cursor-type 'bar) +;; highlight current line +(global-hl-line-mode 1) + ;; Set default font. -(set-face-attribute 'default nil :height 130 :weight 'normal :width 'normal) +(set-face-attribute 'default nil :height 130 :weight 'normal :width 'normal :font "DejaVu Sans Mono") ;; no bell (setq visible-bell nil) |