diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-11-30 15:56:40 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-11-30 15:56:40 -0800 |
commit | 81265ae310a22248783cd335069f2d30ab737ebb (patch) | |
tree | 7e92aca77aa8620b6c7987fd962130f02434c7f2 | |
parent | [Emacs] Simplify the mode-line by using only powerline. (diff) | |
download | emacs.d-81265ae310a22248783cd335069f2d30ab737ebb.tar.gz |
[Emacs] Set the cursor type.
-rw-r--r-- | emacs.d/lib/settings.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs.d/lib/settings.el b/emacs.d/lib/settings.el index 672babd..9ff9a0c 100644 --- a/emacs.d/lib/settings.el +++ b/emacs.d/lib/settings.el @@ -85,6 +85,9 @@ (setq display-time-default-load-average nil) (setq display-time-format "") +;; cursor is a thin bar +(setq-default cursor-type 'bar) + ;; Set default font. (set-face-attribute 'default nil :family "DejaVu Sans Mono" :height 130 :weight 'normal :width 'normal) |