diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-02-16 14:10:22 -0800 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-02-16 14:10:22 -0800 |
commit | 67c2168998c829c8739a0a4f73ab9d6117d07f0a (patch) | |
tree | a4dcb9f8a99f527187b08e77aea85e632c6a1396 /emacs.d/custom/fcuny-git.el | |
parent | [emacs] Add a function to select and copy buffer. (diff) | |
download | emacs.d-67c2168998c829c8739a0a4f73ab9d6117d07f0a.tar.gz |
[emacs] Split configuration in multiple files.
This is actually an easier thing to maintain.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-git.el | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/emacs.d/custom/fcuny-git.el b/emacs.d/custom/fcuny-git.el new file mode 100644 index 0000000..d056896 --- /dev/null +++ b/emacs.d/custom/fcuny-git.el @@ -0,0 +1,14 @@ +(use-package gitconfig-mode + :ensure t + :defer 5) + +(use-package magit + :ensure t + :after (flyspell) + :hook ((magit-mode . hl-line-mode)) + :bind (("C-x g s" . magit-status)) + :config + (setq git-commit-summary-max-length 50) + (setq fill-column 72)) + +(provide 'fcuny-git) |