el-get/recipes/n3-mode.rcp
2012-02-22 14:46:21 -08:00

11 lines
454 B
Plaintext

(:name n3-mode
:description "Mode for Notation 3"
:type git
:url "https://github.com/kurtjx/n3-mode-for-emacs.git"
:post-init (progn
(autoload 'n3-mode "n3-mode"
"Major mode for OWL or N3 files" t)
(add-hook 'n3-mode-hook 'turn-on-font-lock)
(add-to-list 'auto-mode-alist
'("\\.\\(n3\\|owl\\)\\'" . n3-mode))))