2017-06-24 18:07:54 +02:00
|
|
|
;;; lang/hy/config.el -*- lexical-binding: t; -*-
|
|
|
|
|
2019-07-23 12:44:03 +02:00
|
|
|
(use-package! hy-mode
|
2018-05-25 00:46:11 +02:00
|
|
|
:mode "\\.hy\\'"
|
2018-02-14 07:44:23 -05:00
|
|
|
:interpreter "hy"
|
|
|
|
:config
|
2018-06-15 16:07:24 +02:00
|
|
|
(set-repl-handler! 'hy-mode #'hy-shell-start-or-switch-to-shell)
|
2023-09-13 20:41:33 -04:00
|
|
|
(set-formatter! 'lisp-indent #'apheleia-indent-lisp-buffer :modes '(hy-mode))
|
2018-06-15 02:58:12 +02:00
|
|
|
(set-company-backend! 'hy-mode 'company-hy))
|