mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-14 08:01:35 +09:00
13 lines
367 B
EmacsLisp
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
|