diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-16 00:13:59 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-16 00:13:59 -0400 |
commit | 12f6f9d7a6f68457fda1a26b4ff0e37ea028ac45 (patch) | |
tree | d18a80253bce41aa8070cb9a7b5c3b31905b2816 /init.el | |
parent | Add various thing to `.gitignore` (diff) | |
download | mmosmacs-12f6f9d7a6f68457fda1a26b4ff0e37ea028ac45.tar.gz mmosmacs-12f6f9d7a6f68457fda1a26b4ff0e37ea028ac45.tar.bz2 mmosmacs-12f6f9d7a6f68457fda1a26b4ff0e37ea028ac45.zip |
Use `magit` for git stuff
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -384,6 +384,20 @@ | |||
384 | :bind-keymap ("C-c p" . projectile-command-map)) | 384 | :bind-keymap ("C-c p" . projectile-command-map)) |
385 | 385 | ||
386 | 386 | ||
387 | ;; --------------------------------- | ||
388 | ;; `Magit' - A git porcelain | ||
389 | ;; ------------------------- | ||
390 | ;; Magit provides a state-of-the-art | ||
391 | ;; interface for managing `git' | ||
392 | ;; repositories. | ||
393 | ;; --------------------------------- | ||
394 | |||
395 | (use-package magit | ||
396 | :straight t | ||
397 | :custom | ||
398 | (magit-display-buffer-function #'magit-display-buffer-same-window-except-diff-v1)) | ||
399 | |||
400 | |||
387 | 401 | ||
388 | 402 | ||
389 | ;; --------------------------------------------------------------------- | 403 | ;; --------------------------------------------------------------------- |