summaryrefslogtreecommitdiffstats
path: root/lisp/init-flymake.el
blob: 0edc52186173354d457c9eb338116f3e590ad040 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
;;; init-flymake.el --- configure flymake
;;; 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