-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.emacs
More file actions
17 lines (16 loc) · 674 Bytes
/
.emacs
File metadata and controls
17 lines (16 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;;; example setting for Mizar mode
(global-font-lock-mode t)
(setq require-final-newline t)
(setq load-path (cons (substitute-in-file-name "$MIZFILES") load-path))
(autoload 'mizar-mode "mizar" "Major mode for editing Mizar articles." t)
(autoload 'mmlquery-decode "mizar")
(autoload 'mmlquery-mode "mizar")
(setq auto-mode-alist (append '( ("\\.miz" . mizar-mode)
("\\.abs" . mizar-mode))
auto-mode-alist))
(setq format-alist
(append '(
(text/mmlquery "Extended MIME text/mmlquery format."
"::[ \t]*Content-[Tt]ype:[ ]*text/mmlquery"
mmlquery-decode nil nil mmlquery-mode))
format-alist))