mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 03:00:11 +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-diff
|
||||
magit-commit)
|
||||
:bind (("C-c m s" . magit-status)
|
||||
("C-c m d" . magit-diff)
|
||||
("C-c m c" . magit-commit))
|
||||
:config
|
||||
(progn
|
||||
(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
|
||||
:ensure magit
|
||||
:commands (magit-blame-mode))
|
||||
:commands magit-blame-mode
|
||||
:bind ("C-c m b" . magit-blame-mode))
|
||||
#+END_SRC
|
||||
* Other functionality
|
||||
** Disable tab indenting by default
|
||||
|
|
Loading…
Reference in a new issue