+ :eval => set-eval-handler! + :repl => set-repl-handler! + Updates all internal references.
8 lines
236 B
EmacsLisp
8 lines
236 B
EmacsLisp
;;; lang/hy/config.el -*- lexical-binding: t; -*-
|
|
|
|
(def-package! hy-mode
|
|
:mode "\\.hy\\'"
|
|
:interpreter "hy"
|
|
:config
|
|
(set-repl-handler! 'hy-mode #'hy-shell-start-or-switch-to-shell)
|
|
(set-company-backend! 'hy-mode 'company-hy))
|