Files
doomemacs/modules/lang/hy/config.el
2023-09-13 20:21:00 +01:00

10 lines
317 B
EmacsLisp

;;; lang/hy/config.el -*- lexical-binding: t; -*-
(use-package! hy-mode
:mode "\\.hy\\'"
:interpreter "hy"
: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))