doomemacs/modules/lang/hy/config.el

10 lines
316 B
EmacsLisp
Raw Normal View History

2017-06-24 18:07:54 +02:00
;;; 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))