Initial commit
This commit is contained in:
commit
99e3df82b7
28 changed files with 2639 additions and 0 deletions
29
stuff/my-lisp-mode.el
Executable file
29
stuff/my-lisp-mode.el
Executable 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue