From 7a83172c36988f160f961d9fc00191fdb44ec8d9 Mon Sep 17 00:00:00 2001 From: Micheal Smith Date: Thu, 30 Oct 2025 13:53:37 -0500 Subject: [PATCH] Moved error section into its own file. --- config.org | 7 +++---- config/error.org | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+), 4 deletions(-) create mode 100644 config/error.org diff --git a/config.org b/config.org index de9976e..f6f7ba4 100644 --- a/config.org +++ b/config.org @@ -216,13 +216,9 @@ features. #+INCLUDE: "config/qol.org" :minlevel 1 -<<<<<<< Updated upstream -* Error Checking -======= #+INCLUDE: "config/bufferlo.org" :minlevel 1 #+INCLUDE: "config/error.org" :minlevel 1 ->>>>>>> Stashed changes ** Flycheck @@ -240,6 +236,9 @@ Of course it's always useful to have a debugger handy. #+begin_src emacs-lisp (use-package dap-mode :defer t) #+end_src +======= +#+INCLUDE: "config/error.org" :minlevel 1 +>>>>>>> 7a6516d (Moved error section into its own file.) * Modern Completion Stack diff --git a/config/error.org b/config/error.org new file mode 100644 index 0000000..8353fdb --- /dev/null +++ b/config/error.org @@ -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 +