summaryrefslogtreecommitdiffstats
path: root/lisp/init-flymake.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/init-flymake.el')
-rw-r--r--lisp/init-flymake.el15
1 files changed, 0 insertions, 15 deletions
diff --git a/lisp/init-flymake.el b/lisp/init-flymake.el
deleted file mode 100644
index 94df6fc..0000000
--- a/lisp/init-flymake.el
+++ /dev/null
@@ -1,15 +0,0 @@
-;;; init-flymake.el --- configure flymake -*- lexical-binding:t -*-
-;;; Commentary:
-;;; Code:
-
-(use-package flymake
- :bind (:map flymake-mode-map
- ;; C-c m l shows a list of all errors
- ("C-c m l" . flymake-show-buffer-diagnostics)
- ;; C-c m n/p navigates to next/previous error
- ("C-c m n" . flymake-goto-next-error)
- ("C-c m p" . flymake-goto-prev-error)))
-
-(provide 'init-flymake)
-
-;;; init-flymake.el ends here