Initial commit

This commit is contained in:
Némunaire 2012-10-13 21:35:28 +02:00
commit 99e3df82b7
28 changed files with 2639 additions and 0 deletions

21
stuff/tuareg.el Executable file
View 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)