summaryrefslogtreecommitdiffstats
path: root/lisp/init-flymake.el
blob: 1cc7ef002657fd7eba0f322022f34500f710792c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
;;; init-flymake.el --- configure flymake  -*- lexical-binding:t -*-
;;; Commentary:
;;; Code:

(use-package flymake
  :bind (:map flymake-mode-map
              ;; C-d shows a list of all errors
              ("C-c d" . flymake-show-diagnostics-buffer)))

(provide 'init-flymake)

;;; init-flymake.el ends here