dotfiles/.config/emacs/lisp/init-highlight.el
2023-05-19 15:26:09 +09:00

13 lines
367 B
EmacsLisp

;;; init-highlight.el -*- lexical-binding: t -*-
(require 'init-const)
(require 'init-funcs)
(use-package hl-line
:ensure nil
:hook ((after-init . global-hl-line-mode)
((dashboard-mode eshell-mode shell-mode term-mode vterm-mode) .
(lambda () (setq-local global-hl-line-mode nil)))))
(provide 'init-highlight)
;;; init-highlight.el ends here