2017-06-24 18:07:54 +02:00
|
|
|
;;; lang/hy/config.el -*- lexical-binding: t; -*-
|
|
|
|
|
|
|
|
(def-package! hy-mode
|
2018-02-14 07:44:23 -05:00
|
|
|
:mode "\\.hy$"
|
|
|
|
:interpreter "hy"
|
|
|
|
:config
|
|
|
|
(set! :repl 'hy-mode #'hy-shell-start-or-switch-to-shell)
|
|
|
|
(set! :company-backend 'hy-mode '(company-hy)))
|