summaryrefslogtreecommitdiff
path: root/lisp/init-git.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/init-git.el')
-rw-r--r--lisp/init-git.el20
1 files changed, 11 insertions, 9 deletions
diff --git a/lisp/init-git.el b/lisp/init-git.el
index 2f9316d..0b5d420 100644
--- a/lisp/init-git.el
+++ b/lisp/init-git.el
@@ -1,8 +1,10 @@
-(require 'git-annex)
+(require-package 'magit)
+(require-package 'git-commit-mode)
+(require-package 'git-annex)
(setq git-annex-commit nil)
-(require 'magit)
+(key-chord-define-global ",g" 'magit-status)
(defun km/magit-auto-commit ()
"Commit all changes with \"auto\" commit message.
@@ -10,18 +12,18 @@ Useful for non-source code repos (e.g., Org mode note files)."
(interactive)
(magit-run-git "commit" "--all" "--message=auto"))
-(magit-key-mode-insert-action 'committing
- "u" "Auto commit" 'km/magit-auto-commit)
+
+(eval-after-load 'magit
+ '(magit-key-mode-insert-action 'committing
+ "u" "Auto commit" 'km/magit-auto-commit))
;; http://whattheemacsd.com/setup-magit.el-01.html
(defadvice magit-status (around magit-fullscreen activate)
ad-do-it
(delete-other-windows))
-(setq magit-restore-window-configuration t)
-
-(setq magit-default-tracking-name-function 'magit-default-tracking-name-branch-only)
-
-(setq magit-log-show-margin nil)
+(setq magit-restore-window-configuration t
+ magit-default-tracking-name-function 'magit-default-tracking-name-branch-only
+ magit-log-show-margin nil)
(provide 'init-git)