el-get/recipes/yaml-mode.rcp
Justin Weiss 9f52e36f04 Fixed after => post-init in the yaml-mode recipe
This should probably be a post-init and not an after, so user-defined :after hooks don't override it.
2011-09-29 13:55:12 -07:00

8 lines
328 B
Plaintext

(:name yaml-mode
:description "Simple major mode to edit YAML file for emacs"
:type git
:url "https://github.com/yoshiki/yaml-mode.git"
:post-init (lambda ()
(autoload 'yaml-mode "yaml-mode" nil t)
(add-to-list 'auto-mode-alist '("\\.ya?ml\\'" . yaml-mode))))