diff --git a/config.org b/config.org index 57c47dd..63c1527 100644 --- a/config.org +++ b/config.org @@ -208,21 +208,7 @@ features. #+INCLUDE: "config/formatting.org" :minlevel 1 -* Documentation - -If possible I like to have documentation within the editor itself so -I can easily read and look at the material easily. - -** devdocs.el - -This [[https://github.com/astoff/devdocs.el][plugin]] browses documentation from [[https://devdocs.io][devdocs.io]]. I haven't used this -enough to vouch for it's accuracy, but it seems fine. - -#+begin_src emacs-lisp -(use-package devdocs - :ensure t - :bind ("C-h D" . devdocs-lookup)) -#+end_src +#+INCLUDE: "config/documentation.org" :minlevel 1 * Socializing diff --git a/config/documentation.org b/config/documentation.org new file mode 100644 index 0000000..1ce52cd --- /dev/null +++ b/config/documentation.org @@ -0,0 +1,15 @@ +* Documentation + +If possible I like to have documentation within the editor itself so +I can easily read and look at the material easily. + +** devdocs.el + +This [[https://github.com/astoff/devdocs.el][plugin]] browses documentation from [[https://devdocs.io][devdocs.io]]. I haven't used this +enough to vouch for it's accuracy, but it seems fine. + +#+begin_src emacs-lisp +(use-package devdocs + :ensure t + :bind ("C-h D" . devdocs-lookup)) +#+end_src