aboutsummaryrefslogtreecommitdiff
path: root/dot.emacs.d/init.el
diff options
context:
space:
mode:
authorThomas Schneider <qsx@qsx.re>2019-03-31 19:36:17 +0200
committerThomas Schneider <qsx@qsx.re>2019-03-31 19:36:17 +0200
commitc7959dc87cff364e9e4eb3f6f67061de496253d8 (patch)
tree1096bd44e23f40f0adc8ffb61dc2b37b4bb32836 /dot.emacs.d/init.el
parent187787af513d2143fb8109eafd68941a1a616d3d (diff)
Emacs: Use magit
Diffstat (limited to 'dot.emacs.d/init.el')
-rw-r--r--dot.emacs.d/init.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el
index dd12fbf..ee2a5cc 100644
--- a/dot.emacs.d/init.el
+++ b/dot.emacs.d/init.el
@@ -57,6 +57,10 @@
:config (projectile-mode 1)
:bind-keymap ("C-c p" . projectile-command-map))
+(use-package magit
+ :bind ("C-x g" . #'magit-status)
+ :config (setq global-magit-file-mode t))
+
(use-package ace-window
:bind ("M-o" . ace-window))