diff options
-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 |