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

29
stuff/my-lisp-mode.el Executable file
View file

@ -0,0 +1,29 @@
(defun my-lisp-mode-setup ()
(require 'lisp-mode)
;; ------------- ;;
;; Configuration ;;
;; ------------- ;;
;; Rebox style
(set 'my-rebox-style 523)
;; -------- ;;
;; Bindings ;;
;; -------- ;;
;; Rebox comment
(define-key
lisp-mode-shared-map
[(meta q)]
'my-rebox-comment)
)
(add-hook 'lisp-mode-hook 'my-lisp-mode-setup)
(add-hook 'emacs-lisp-mode-hook 'my-lisp-mode-setup)
(provide 'my-lisp-mode)