aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-16 00:13:59 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-16 00:13:59 -0400
commit12f6f9d7a6f68457fda1a26b4ff0e37ea028ac45 (patch)
treed18a80253bce41aa8070cb9a7b5c3b31905b2816 /init.el
parentAdd various thing to `.gitignore` (diff)
downloadmmosmacs-12f6f9d7a6f68457fda1a26b4ff0e37ea028ac45.tar.gz
mmosmacs-12f6f9d7a6f68457fda1a26b4ff0e37ea028ac45.tar.bz2
mmosmacs-12f6f9d7a6f68457fda1a26b4ff0e37ea028ac45.zip
Use `magit` for git stuff
Diffstat (limited to 'init.el')
-rw-r--r--init.el14
1 files changed, 14 insertions, 0 deletions
diff --git a/init.el b/init.el
index 35fe8cc..7c95bf1 100644
--- a/init.el
+++ b/init.el
@@ -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;; ---------------------------------------------------------------------