diff options
-rw-r--r-- | lisp/+org.el | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lisp/+org.el b/lisp/+org.el index d5b5c10..f81d9a1 100644 --- a/lisp/+org.el +++ b/lisp/+org.el | |||
@@ -519,5 +519,23 @@ language name.") | |||
519 | (setq last-command-event ?~) | 519 | (setq last-command-event ?~) |
520 | (call-interactively #'org-self-insert-command))) | 520 | (call-interactively #'org-self-insert-command))) |
521 | 521 | ||
522 | ;;; Better org faces | ||
523 | ;; see `org-emphasis-alist' | ||
524 | |||
525 | (defface org-bold '((t (:weight bold))) | ||
526 | "Bold face in `org-mode' documents.") | ||
527 | |||
528 | (defface org-italic '((t (:slant italic))) | ||
529 | "Italic face in `org-mode' documents.") | ||
530 | |||
531 | (defface org-underline '((t (:underline t))) | ||
532 | "Underline face in `org-mode' documents.") | ||
533 | |||
534 | (defface org-strikethrough '((t (:strike-through t))) | ||
535 | "Strike-through face for `org-mode' documents.") | ||
536 | |||
537 | ;; `org-verbatim' and `org-code' are apparently already things, so we skip them | ||
538 | ;; here. | ||
539 | |||
522 | (provide '+org) | 540 | (provide '+org) |
523 | ;;; +org.el ends here | 541 | ;;; +org.el ends here |