doomemacs/modules/lang/hy/config.el
Ian Kerins 5efec260ef fix(format): use correct lisp format function
`apheleia--indent-lisp-buffer` does not exist.

Ref: #6369
2023-09-14 03:31:56 +02:00

9 lines
316 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))