Install magit

This commit is contained in:
2022-10-09 23:57:09 -07:00
parent 08c40b3014
commit d1a5a49114
2 changed files with 21 additions and 6 deletions

View File

@@ -188,8 +188,6 @@ Set a location for the custom file so it doesn't pollute this file.
("C-c b n" . next-buffer)
("C-c b C-c" . server-edit)
;; Magit
("C-c g g" . magit-status)
;; TODO - C-c g p for open project in magit
("C-o" . pop-global-mark)
@@ -250,6 +248,8 @@ When in indent-rigidly mode (=+= in normal state), use =H/L= to adjust indent by
(meow-motion-overwrite-define-key
'("j" . meow-next)
'("k" . meow-prev)
'("J" . meow-next-expand)
'("K" . meow-prev-expand)
'("<escape>" . ignore))
(meow-leader-define-key
@@ -564,7 +564,12 @@ When in indent-rigidly mode (=+= in normal state), use =H/L= to adjust indent by
* Git
#+begin_src emacs-lisp
(use-package magit
:straight t)
:straight t
:custom (magit-save-repository-buffers 'dontask)
:bind (("C-x g" . magit-status)
:map magit-mode-map
(":" . execute-extended-command)
("x" . magit-discard)))
#+end_src
* TODO Direnv