mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-23 03:20:26 +10:00
9 lines
236 B
EmacsLisp
9 lines
236 B
EmacsLisp
;;; 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-company-backend! 'hy-mode 'company-hy))
|