Emacs: Add text about git-commit faces

This commit is contained in:
Tom Willemsen 2013-03-28 01:39:51 +01:00
parent 8a5ee046a7
commit 9defc70b3f

View file

@ -490,12 +490,14 @@ Start jedi when =python-mode= is started.
(add-hook 'python-mode-hook 'jedi:setup) (add-hook 'python-mode-hook 'jedi:setup)
#+END_SRC #+END_SRC
Show argument lists and such in the echo area. Show argument lists and such from jedi in the echo area.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(setq jedi:tooltip-method nil) (setq jedi:tooltip-method nil)
#+END_SRC #+END_SRC
Define some faces to make editing magit logs nicer.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(defface git-commit-summary-face (defface git-commit-summary-face
'((t (:inherit org-level-1))) '((t (:inherit org-level-1)))
@ -511,7 +513,9 @@ Show argument lists and such in the echo area.
'((t (:inherit git-commit-overlong-summary-face))) '((t (:inherit git-commit-overlong-summary-face)))
"Face for the supposedly empty line in commit messages." "Face for the supposedly empty line in commit messages."
:group 'local) :group 'local)
#+END_SRC
#+BEGIN_SRC emacs-lisp
(eval-after-load "newst-treeview" '(require 'newsticker-init)) (eval-after-load "newst-treeview" '(require 'newsticker-init))
(eval-after-load "org" '(require 'org-init)) (eval-after-load "org" '(require 'org-init))
(eval-after-load "rainbow-mode" '(oni:rainbow-mode-init)) (eval-after-load "rainbow-mode" '(oni:rainbow-mode-init))