Moved vcs section into its own file.

This commit is contained in:
Micheal Smith
2025-10-30 14:05:18 -05:00
parent 011607e21b
commit e2bcec9f20
2 changed files with 20 additions and 18 deletions

View File

@@ -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

19
config/vcs.org Normal file
View File

@@ -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