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

View File

@@ -216,13 +216,9 @@ features.
#+INCLUDE: "config/qol.org" :minlevel 1 #+INCLUDE: "config/qol.org" :minlevel 1
<<<<<<< Updated upstream
* Error Checking
=======
#+INCLUDE: "config/bufferlo.org" :minlevel 1 #+INCLUDE: "config/bufferlo.org" :minlevel 1
#+INCLUDE: "config/error.org" :minlevel 1 #+INCLUDE: "config/error.org" :minlevel 1
>>>>>>> Stashed changes
** Flycheck ** Flycheck
@@ -240,6 +236,9 @@ Of course it's always useful to have a debugger handy.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package dap-mode :defer t) (use-package dap-mode :defer t)
#+end_src #+end_src
=======
#+INCLUDE: "config/error.org" :minlevel 1
>>>>>>> 7a6516d (Moved error section into its own file.)
* Modern Completion Stack * Modern Completion Stack

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