Moved error section into its own file.

This commit is contained in:
Micheal Smith
2025-10-30 13:53:37 -05:00
parent 27fe88a713
commit 7a83172c36
2 changed files with 22 additions and 4 deletions

19
config/error.org Normal file
View File

@@ -0,0 +1,19 @@
* Error Checking
** Flycheck
I've found flycheck to be an excellent checker. Capable of interacting with
many backends at once. Be they linters, or LSPs.
#+begin_src emacs-lisp
(use-package flycheck
:ensure t
:init (global-flycheck-mode))
#+end_src
Of course it's always useful to have a debugger handy.
#+begin_src emacs-lisp
(use-package dap-mode :defer t)
#+end_src