mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
22 lines
444 B
EmacsLisp
22 lines
444 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)
|
|
|
|
:preface
|
|
(defun siren-fundamental-mode-setup ()
|
|
(hl-line-mode t)))
|
|
|
|
(provide 'siren-fundamental-mode)
|
|
;;; siren-fundamental-mode.el ends here
|