diff --git a/home/emacs/init.el b/home/emacs/init.el index bdbac7f6..8c75468b 100644 --- a/home/emacs/init.el +++ b/home/emacs/init.el @@ -444,6 +444,11 @@ (eglot-autoshutdown t) (eglot-autoreconnect nil)) +(use-package flymake + :ensure t + :bind (("C-c C-." . flymake-goto-next-error) + ("C-c C-," . flymake-goto-prev-error))) + (setq project-switch-use-entire-map t project-switch-commands 'project-dired) diff --git a/home/emacs/init.org b/home/emacs/init.org index ceedb5bd..9c6e08d6 100644 --- a/home/emacs/init.org +++ b/home/emacs/init.org @@ -527,6 +527,14 @@ For reference information, see [[https://orgmode.com][Org-mode website]] (eglot-autoshutdown t) (eglot-autoreconnect nil)) #+END_SRC + +** Flymake +#+begin_src emacs-lisp :tangle yes + (use-package flymake + :ensure t + :bind (("C-c C-." . flymake-goto-next-error) + ("C-c C-," . flymake-goto-prev-error))) +#+end_src ** Project #+BEGIN_SRC emacs-lisp (setq project-switch-use-entire-map t