summary refs log tree commit diff
path: root/config/init-elisp.el
blob: 49f3ab4b9a911e3802f9c82deaeaf80c741c2899 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
;;; init-elisp.el --- Configure elisp -*- lexical-binding: t -*-
;; Author: Franck Cuny <franck@fcuny.net>

;;; 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