Moved error section into its own file.
This commit is contained in:
parent
27fe88a713
commit
7a83172c36
2 changed files with 22 additions and 4 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
19
config/error.org
Normal file
19
config/error.org
Normal 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
|
||||
|
||||
Loading…
Reference in a new issue