Files
.emacs.d/modules/major-modes/siren-fundamental-mode.el
Jim Myhrberg 7ed3e92dbb feat(core): use buffer local hl-line-mode instead of global-hl-line-mode
This allows specific major-modes to disable hl-line-mode, which is
desired some terminal/shell modes like vterm where the hl-line flickers
constantly while typing.
2020-08-16 14:21:00 +01:00

22 lines
441 B
EmacsLisp

;;; siren-fundamental-mode.el --- jimeh's Emacs Siren: fundamental-mode configuration.
;;; Commentary:
;; Basic configuration for fundamental-mode.
;;; Code:
(use-package fundamental-mode
:straight (:type built-in)
:defer t
:hook
(fundamental-mode . siren-fundamental-mode-setup)
:init
(defun siren-fundamental-mode-setup ()
(hl-line-mode t)))
(provide 'siren-fundamental-mode)
;;; siren-fundamental-mode.el ends here