summaryrefslogtreecommitdiffstats
path: root/lisp/init-flymake.el
blob: f915d1767fdc85330c9bebd34e212738448cf0f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
(use-package flymake
  ;; package is bundled with emacs
  :ensure nil

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

(provide 'init-flymake)