You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-emacs/clojure-mode/files/50clojure-mode-gentoo.el

9 lines
484 B

(add-to-list 'load-path "@SITELISP@")
(autoload 'clojure-mode "clojure-mode"
"Major mode for editing Clojure code." t)
(add-to-list 'auto-mode-alist '("\\(?:build\\|profile\\)\\.boot\\'" . clojure-mode))
(add-to-list 'auto-mode-alist '("\\.\\(clj\\|cljd\\|dtm\\|edn\\)\\'" . clojure-mode))
(add-to-list 'auto-mode-alist '("\\.cljc\\'" . clojurec-mode))
(add-to-list 'auto-mode-alist '("\\.cljs\\'" . clojurescript-mode))
(add-to-list 'interpreter-mode-alist '("bb" . clojure-mode))