lang/hy: set :repl, :company-backend & :interpreter

This commit is contained in:
Henrik Lissner 2018-02-14 07:44:23 -05:00
parent 373d4f25b5
commit 871883cd89
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -1,4 +1,8 @@
;;; lang/hy/config.el -*- lexical-binding: t; -*-
(def-package! hy-mode
:mode "\\.hy$")
:mode "\\.hy$"
:interpreter "hy"
:config
(set! :repl 'hy-mode #'hy-shell-start-or-switch-to-shell)
(set! :company-backend 'hy-mode '(company-hy)))