el-get/recipes/newlisp-mode.rcp
Vincent Bernat 1ac5d5f9f9 Modify auto-mode-alist in prepare step
When lazy mode is enabled, altering `auto-mode-alist` in `post-init`
won't work until the mode is enabled a first time. We move all
modifications of `auto-mode-alist` in `prepare`.
2015-03-12 22:46:21 -04:00

10 lines
394 B
Plaintext

(:name newlisp-mode
:website "https://github.com/kosh04/newlisp-mode"
:description "A newLISP major mode"
:type github
:pkgname "kosh04/newlisp-mode"
:features newlisp-mode
:prepare (progn
(add-to-list 'auto-mode-alist '("\\.lsp$" . newlisp-mode))
(add-to-list 'interpreter-mode-alist '("newlisp" . newlisp-mode))))