mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
andras-simonyi/citeproc-el@538fed794c -> andras-simonyi/citeproc-el@9f783967c1 bdarcus/citar@51b30f2e40 -> bdarcus/citar@b24b5b94b7 emacs-lsp/lsp-mode@3d6a01dde9 -> emacs-lsp/lsp-mode@c228bce435 gagbo/consult-lsp@aaa9a31bc8 -> gagbo/consult-lsp@f4f195046b joaotavora/eglot@28092ba3af -> joaotavora/eglot@2c0f262c24 magit/forge@a44afa81f1 -> magit/forge@0ff9b8a0de magit/magit@2e73b66c29 -> magit/magit@0ac05f3962 millejoh/emacs-ipython-notebook@c6696c12eb -> millejoh/emacs-ipython-notebook@6063cee7fb purcell/envrc@8a9a142cf9 -> purcell/envrc@456c4100de realgud/realgud@978b455d7d -> realgud/realgud@3c88611c4e tumashu/posframe@3b1dc400d2 -> tumashu/posframe@6c0e63d6b3 vedang/pdf-tools@a8847b75d3 -> vedang/pdf-tools@4e6c778194 wandersoncferreira/code-review@136c0933ba -> wandersoncferreira/code-review@ccc3795a72 yoshiki/yaml-mode@63b637f846 -> yoshiki/yaml-mode@a79d2a7b92 Close: #5977 Ref: emacs-lsp/lsp-mode#3295
tools/magit
Description
This module provides Magit, an interface to the Git version control system.
If you are new to Magit, see the Getting Started section of its project readme.
Maintainers
This module has no dedicated maintainers.
Module Flags
+forge
Enable Forge; a porcelain for managing issues and PRs from within Emacs. Will take a while on first run to build emacsql-sqlite.
Plugins
- magit
- forge* (
+forge
) - magit-gitflow
- magit-todos
- github-review
- evil-magit* (
:editor evil +everywhere
)
Hacks
forge
was modified to defer compilation of emacsql-sqlite until you try to use forge, rather than when magit first loads (which could be as soon as startup).magit
has been modified to recognize$XDG_CACHE_HOME/git/credential/socket
.magit
has been modified to invalidate the projectile cache when you check out a new branch or commit.magit
has been modified to revert repo buffers (e.g. after changing branches) when you later switch to them, rather than all at once.
Prerequisites
This module requires git
.
Forge will require a Github API token the first time you run forge-pull
.
TODO Features
Configuration
Add these to $DOOMDIR/config.el
.
Enable Gravatars
This will enable gravatars when viewing commits. The service used by default is Libravatar.
(setq magit-revision-show-gravatars '("^Author: " . "^Commit: "))
Enable granular diff-highlights for all hunks
By default, changes are highlighted linewise for all but the selected hunk. This has performance reasons. You can enable character-wise highlights for all visible hunks with:
(after! magit
(setq magit-diff-refine-hunk 'all))