mirror of
https://github.com/correl/dotfiles.git
synced 2025-01-05 11:08:14 +00:00
[emacs] Add magit key bindings
This commit is contained in:
parent
0fac3f4de0
commit
59d9fbce11
1 changed files with 5 additions and 1 deletions
|
@ -607,6 +607,9 @@ Taken from http://groups.google.com/group/gnu.emacs.gnus/browse_thread/thread/a6
|
||||||
magit-status
|
magit-status
|
||||||
magit-diff
|
magit-diff
|
||||||
magit-commit)
|
magit-commit)
|
||||||
|
:bind (("C-c m s" . magit-status)
|
||||||
|
("C-c m d" . magit-diff)
|
||||||
|
("C-c m c" . magit-commit))
|
||||||
:config
|
:config
|
||||||
(progn
|
(progn
|
||||||
(defadvice magit-status (around magit-fullscreen activate)
|
(defadvice magit-status (around magit-fullscreen activate)
|
||||||
|
@ -620,7 +623,8 @@ Taken from http://groups.google.com/group/gnu.emacs.gnus/browse_thread/thread/a6
|
||||||
|
|
||||||
(use-package magit-blame
|
(use-package magit-blame
|
||||||
:ensure magit
|
:ensure magit
|
||||||
:commands (magit-blame-mode))
|
:commands magit-blame-mode
|
||||||
|
:bind ("C-c m b" . magit-blame-mode))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
* Other functionality
|
* Other functionality
|
||||||
** Disable tab indenting by default
|
** Disable tab indenting by default
|
||||||
|
|
Loading…
Reference in a new issue