Add magit section

This commit is contained in:
laurensmiers 2018-06-12 22:39:05 +02:00
parent 96ab07c638
commit 623759dd64
2 changed files with 10 additions and 5 deletions

View file

@ -651,6 +651,16 @@ TODO: need to document this
(add-hook 'gud-mode-hook 'egdbe-gud-mode-hook)
#+END_SRC
* Magit
#+BEGIN_SRC emacs-lisp
(use-package magit
:ensure t
:bind
("C-c m" . magit-status)
)
#+END_SRC
* Old stuff, maybe usefull for lookup later
** Diff mode stuff

View file

@ -8,9 +8,4 @@
(add-hook 'elpy-mode-hook 'flycheck-mode)
(add-hook 'elpy-mode-hook 'py-autopep8-enable-on-save)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Magit (git) ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(global-set-key (kbd "C-c m") 'magit-status)
(provide 'setup-coding)