diff options
| author | Franck Cuny <franck.cuny@gmail.com> | 2016-11-20 09:38:09 -0800 |
|---|---|---|
| committer | Franck Cuny <franck.cuny@gmail.com> | 2016-11-20 09:38:09 -0800 |
| commit | 63ebb617d877d43be623c129d1107cbc1b3d65b6 (patch) | |
| tree | 95bc759615236eb55883fd0f0c5b0806fedabd05 /emacs.d/init.el | |
| parent | [Emacs] Use DejaVu Sans Mono for the font, add time, and bookmarks. (diff) | |
| download | emacs.d-63ebb617d877d43be623c129d1107cbc1b3d65b6.tar.gz | |
[Emacs] Highlight current line.
Diffstat (limited to '')
| -rw-r--r-- | emacs.d/init.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index 3245242..16f250d 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -259,6 +259,13 @@ (use-package ibuffer ;; configuration for ibuffer :ensure t +(use-package hl-line + ;; highlight current line + :defer t + :init + (progn + (global-hl-line-mode +1))) + :defer t :bind ("C-x C-b" . ibuffer) :init |
