summary refs log tree commit diff
path: root/emacs.d/inits/50_git.el
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2015-09-16 16:40:16 -0700
committerFranck Cuny <franckcuny@gmail.com>2015-09-16 16:40:16 -0700
commitf10b5d0e994fe4167935047d99444b3bfa612474 (patch)
tree5279e7320ed826fde12b9fb4278755604bb94f9b /emacs.d/inits/50_git.el
parent[bash] editor (again) (diff)
downloademacs.d-f10b5d0e994fe4167935047d99444b3bfa612474.tar.gz
[emacs] split config in different files.
Move the configuration for each language and major mode in it's own
configuration file.

Enable the theme "leuven" if run in windowed mode.
Diffstat (limited to 'emacs.d/inits/50_git.el')
-rw-r--r--emacs.d/inits/50_git.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs.d/inits/50_git.el b/emacs.d/inits/50_git.el
new file mode 100644
index 0000000..7ce259c
--- /dev/null
+++ b/emacs.d/inits/50_git.el
@@ -0,0 +1,6 @@
+(use-package magit
+  :ensure t
+  :bind ("C-x g" . magit-status)
+  :config
+  (progn
+    (setenv "GIT_PAGER" "")))