summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2013-03-28 01:39:51 +0100
committerGravatar Tom Willemsen2013-03-28 01:39:51 +0100
commit9defc70b3f7483525f5b9c1a4d430236546eba2d (patch)
tree3c4bec505815c1e05ffb8a939eafde146f215f24
parent8a5ee046a7eeecaf979cd0b2bde08854e2f0ed65 (diff)
downloaddotfiles-9defc70b3f7483525f5b9c1a4d430236546eba2d.tar.gz
dotfiles-9defc70b3f7483525f5b9c1a4d430236546eba2d.zip
Emacs: Add text about git-commit faces
-rw-r--r--emacs/init.org6
1 files changed, 5 insertions, 1 deletions
diff --git a/emacs/init.org b/emacs/init.org
index 2d76347..b9db462 100644
--- a/emacs/init.org
+++ b/emacs/init.org
@@ -490,12 +490,14 @@ Start jedi when =python-mode= is started.
(add-hook 'python-mode-hook 'jedi:setup)
#+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
(setq jedi:tooltip-method nil)
#+END_SRC
+Define some faces to make editing magit logs nicer.
+
#+BEGIN_SRC emacs-lisp
(defface git-commit-summary-face
'((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)))
"Face for the supposedly empty line in commit messages."
:group 'local)
+#+END_SRC
+#+BEGIN_SRC emacs-lisp
(eval-after-load "newst-treeview" '(require 'newsticker-init))
(eval-after-load "org" '(require 'org-init))
(eval-after-load "rainbow-mode" '(oni:rainbow-mode-init))