summary refs log tree commit diff
path: root/emacs.d
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-02-13 10:12:30 -0800
committerFranck Cuny <franckcuny@gmail.com>2016-02-13 10:12:30 -0800
commit9de5d9bdf3f8579fb23557e3ac2b54fec1d19c42 (patch)
tree20e8b0c242874b4571ee7bca0ab69df4ec816856 /emacs.d
parent[emacs] Load `exec-path-from-shell` only on OS X (diff)
downloademacs.d-9de5d9bdf3f8579fb23557e3ac2b54fec1d19c42.tar.gz
[emacs] Add a few more packages for git.
Add the `gitconfig-mode` and `gitignore-mode` packages.
Diffstat (limited to 'emacs.d')
-rw-r--r--emacs.d/core/core-git.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs.d/core/core-git.el b/emacs.d/core/core-git.el
index 2fa1167..3ef59ad 100644
--- a/emacs.d/core/core-git.el
+++ b/emacs.d/core/core-git.el
@@ -8,6 +8,12 @@
     (setq magit-completing-read-function 'ivy-completing-read)
     (setq magit-item-highlight-face 'bold)))
 
+(use-package gitconfig-mode
+  :ensure t)
+
+(use-package gitignore-mode
+  :ensure t)
+
 (use-package gist
   :ensure t
   :bind ("C-c g p" . gist-region-or-buffer-private)