diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-02-13 10:12:30 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-02-13 10:12:30 -0800 |
commit | 9de5d9bdf3f8579fb23557e3ac2b54fec1d19c42 (patch) | |
tree | 20e8b0c242874b4571ee7bca0ab69df4ec816856 | |
parent | [emacs] Load `exec-path-from-shell` only on OS X (diff) | |
download | emacs.d-9de5d9bdf3f8579fb23557e3ac2b54fec1d19c42.tar.gz |
[emacs] Add a few more packages for git.
Add the `gitconfig-mode` and `gitignore-mode` packages.
-rw-r--r-- | emacs.d/core/core-git.el | 6 |
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) |