summary refs log tree commit diff
path: root/emacs/custom/my-prog.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/custom/my-prog.el')
-rw-r--r--emacs/custom/my-prog.el11
1 files changed, 0 insertions, 11 deletions
diff --git a/emacs/custom/my-prog.el b/emacs/custom/my-prog.el
index d11eebd..c20293e 100644
--- a/emacs/custom/my-prog.el
+++ b/emacs/custom/my-prog.el
@@ -19,17 +19,6 @@
 ;; Jump to first error
 (customize-set-variable 'compilation-scroll-output 'first-error)
 
-(require 'flymake)
-(setq flymake-start-on-save-buffer t)
-(setq elisp-flymake-byte-compile-load-path load-path)
-
-(define-key flymake-mode-map (kbd "C-c ! n") 'flymake-goto-next-error)
-(define-key flymake-mode-map (kbd "C-c ! p") 'flymake-goto-prev-error)
-(define-key flymake-mode-map (kbd "C-c ! d") 'flymake-show-diagnostics-buffer)
-
-(dolist (hook '(prog-mode-hook conf-mode-hook))
-  (add-hook hook 'flymake-mode))
-
 ;; yasnippet is required to support place holders with eglot
 (dolist (hook '(prog-mode-hook conf-mode-hook org-mode-hook))
   (add-hook hook 'yas-minor-mode))