Files
doomemacs/modules/lang/hy/config.el
Henrik Lissner 621ea4d56c refactor(hy): remove redundant mode/interpreter entries
These are set by the package's autoloads.
2025-05-15 17:47:27 +02:00

9 lines
288 B
EmacsLisp

;;; lang/hy/config.el -*- lexical-binding: t; -*-
(use-package! hy-mode
:defer t
:config
(set-repl-handler! 'hy-mode #'hy-shell-start-or-switch-to-shell)
(set-formatter! 'lisp-indent #'apheleia-indent-lisp-buffer :modes '(hy-mode))
(set-company-backend! 'hy-mode 'company-hy))