|
|
|
|
|
|
14
|
|
14
|
|
|
15
|
(add-hook 'clojure-mode-hook 'paredit-mode)
|
15
|
(add-hook 'clojure-mode-hook 'paredit-mode)
|
|
16
|
|
16
|
|
|
|
|
17
|
(define-derived-mode pixie-mode clojure-mode "Pixie"
|
|
|
|
18
|
"Major mode for editing Pixie files"
|
|
|
|
19
|
(setq-local inferior-lisp-program "pixie-vm"))
|
|
|
|
20
|
(add-to-list 'auto-mode-alist '("\\.pxi\\'" . pixie-mode))
|
|
|
|
21
|
|
|
17
|
(custom-set-variables
|
22
|
(custom-set-variables
|
|
18
|
'(initial-buffer-choice (get-buffer "*scratch*"))
|
23
|
'(initial-buffer-choice (get-buffer "*scratch*"))
|
|
19
|
'(haskell-mode-hook '(turn-on-haskell-simple-indent)))
|
24
|
'(haskell-mode-hook '(turn-on-haskell-simple-indent)))
|