Initial commit
This commit is contained in:
commit
99e3df82b7
28 changed files with 2639 additions and 0 deletions
21
stuff/tuareg.el
Executable file
21
stuff/tuareg.el
Executable file
|
|
@ -0,0 +1,21 @@
|
|||
(defun tuareg-mode-setup ()
|
||||
|
||||
;; BINDINGS
|
||||
|
||||
;; comment
|
||||
(define-key
|
||||
tuareg-mode-map
|
||||
[(control c) (control c)]
|
||||
'comment-region)
|
||||
;; insert fixme
|
||||
(define-key
|
||||
tuareg-mode-map
|
||||
[(control c) (control f)]
|
||||
'insert-fixme)
|
||||
|
||||
;; MISC
|
||||
|
||||
(setq auto-mode-alist (cons '("\\.ml\\w?" . tuareg-mode) auto-mode-alist))
|
||||
)
|
||||
|
||||
(add-hook 'tuareg-load-hook 'tuareg-mode-setup)
|
||||
Loading…
Add table
Add a link
Reference in a new issue