src_prepare-overlay/dev-lang/lfe/files/70lfe-gentoo.el
Maciej Barć 0ca4d65583
dev-lang/lfe: fix emacs mode
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Maciej Barć <xgqt@protonmail.com>
2021-02-03 02:01:09 +01:00

17 lines
501 B
EmacsLisp

;;; lfe site-lisp configuration
(add-to-list 'load-path "@SITELISP@")
(autoload 'lfe-mode "lfe-mode"
"Major mode for editing LFE code." t)
(autoload 'lfe-indent-function "lfe-indent"
"Indent LFE." t)
(autoload 'inferior-lfe-mode "inferior-lfe"
"Major mode for interacting with an inferior LFE process." t)
(autoload 'inferior-lfe "inferior-lfe"
"Run an LFE process." t)
(autoload 'run-lfe "inferior-lfe"
"Run an LFE process." t)
(add-to-list 'auto-mode-alist '("\\.lfe\\'" . lfe-mode) t)