From 7c5780a719565630f58e7751afa8c7e458c49871 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 6 Apr 2024 11:22:57 -0700 Subject: a org file is definitely not the way for me --- config/init-elisp.el | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 config/init-elisp.el (limited to 'config/init-elisp.el') diff --git a/config/init-elisp.el b/config/init-elisp.el new file mode 100644 index 0000000..49f3ab4 --- /dev/null +++ b/config/init-elisp.el @@ -0,0 +1,19 @@ +;;; init-elisp.el --- Configure elisp -*- lexical-binding: t -*- +;; Author: Franck Cuny + +;;; Commentary: + +;; configure elisp + +;;; Code: + +(use-package emacs-lisp-mode + :bind (:map emacs-lisp-mode-map + ("C-c C-r" . eval-region) + ("C-c C-d" . eval-defun) + ("C-c C-b" . eval-buffer)) + :hook ((emacs-lisp-mode . flymake-mode))) + +(provide 'init-elisp) + +;;; init-elisp.el ends here -- cgit 1.4.1