summary refs log tree commit diff
path: root/emacs/custom/my-prog.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-10-14 17:40:33 -0700
committerFranck Cuny <franck@fcuny.net>2022-10-14 17:40:33 -0700
commite599383162f5103d033a61be833aa27fef1895a5 (patch)
tree21e75fb2c3f7607a3147c9a479599a57e1d273ea /emacs/custom/my-prog.el
parentfix(prog/lsp): apply a number of fixes related to LSP (diff)
downloademacs.d-e599383162f5103d033a61be833aa27fef1895a5.tar.gz
ref: move flymake and eldoc configuration to their own libraries
Change-Id: Ida9e0f7d6ee25cf5fe8e208d1ae5c77aa28cfe0f
Diffstat (limited to '')
-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))