diff --git a/config.org b/config.org index 3af9090..678b7cb 100644 --- a/config.org +++ b/config.org @@ -457,24 +457,7 @@ of a project, and convey the results to various completion facilities. #+INCLUDE: "config/style.org" :minlevel 1 -* VCS - -When it comes to git, (which is all that's configured for now), the easy -choice is [[https://magit.vc/][Magit]]. I've kept the configuration pretty minimal. Only adding -forge support really. - -#+begin_src emacs-lisp -(use-package magit - :defer t - :custom - (magit-repository-directories (list (cons elpaca-repos-directory 1))) - (magit-diff-refine-hunk 'all) - :config - (transient-bind-q-to-quit)) - -(use-package forge - :after (magit)) -#+end_src +#+INCLUDE: "config/vcs.org" :minlevel 1 * Language Server Protocol diff --git a/config/vcs.org b/config/vcs.org new file mode 100644 index 0000000..f3e34dc --- /dev/null +++ b/config/vcs.org @@ -0,0 +1,19 @@ +* VCS + +When it comes to git, (which is all that's configured for now), the easy +choice is [[https://magit.vc/][Magit]]. I've kept the configuration pretty minimal. Only adding +forge support really. + +#+begin_src emacs-lisp +(use-package magit + :defer t + :custom + (magit-repository-directories (list (cons elpaca-repos-directory 1))) + (magit-diff-refine-hunk 'all) + :config + (transient-bind-q-to-quit)) + +(use-package forge + :after (magit)) +#+end_src +