summary refs log tree commit diff
path: root/config/init-flymake.el
diff options
context:
space:
mode:
Diffstat (limited to 'config/init-flymake.el')
-rw-r--r--config/init-flymake.el31
1 files changed, 0 insertions, 31 deletions
diff --git a/config/init-flymake.el b/config/init-flymake.el
deleted file mode 100644
index d829c3c..0000000
--- a/config/init-flymake.el
+++ /dev/null
@@ -1,31 +0,0 @@
-;;; init-flymake.el --- Configure flymake -*- lexical-binding: t -*-
-;; Author: Franck Cuny <franck@fcuny.net>
-
-;;; Commentary:
-
-;; Configure flymake
-
-;;; Code:
-
-(use-package flymake
-  :ensure nil
-  :defer t
-  :bind (:prefix "C-c !"
-		 :prefix-map flymake-prefix-map
-		 ("l" . consult-flymake)
-                 ("b" . flymake-show-project-diagnostics)
-                 ("n" . flymake-goto-next-error)
-                 ("p" . flymake-goto-prev-error))
-  :hook
-  (prog-mode . flymake-mode)
-  :custom
-  (flymake-start-on-save-buffer t)
-  (flymake-fringe-indicator-position 'left-fringe)
-  (flymake-suppress-zero-counters t)
-  (flymake-proc-compilation-prevents-syntax-check t)
-  (flymake-no-changes-timeout 9999)
-  (elisp-flymake-byte-compile-load-path load-path))
-
-(provide 'init-flymake)
-
-;;; init-flymake.el ends here