diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/config.org | 13 | ||||
-rw-r--r-- | .config/emacs/mango-theme.el | 3 |
2 files changed, 16 insertions, 0 deletions
diff --git a/.config/emacs/config.org b/.config/emacs/config.org index 196754f..32f33c1 100644 --- a/.config/emacs/config.org +++ b/.config/emacs/config.org @@ -1036,6 +1036,19 @@ version numbers to the backup names — it doesn’t start using a VCS. *** Org-Mode +**** Fontify Blockquotes + +I want to be able to customize the faces of blockquotes, so we need to enable +that setting with ~org-mode~ + +#+BEGIN_SRC elisp + + (setopt org-fontify-quote-and-verse-blocks t) + +#+END_SRC + +**** Visual Intentation + I really enjoy using ~org-indent-mode~. It indents the contents of the org-buffer to keep everything looking nice and structured. diff --git a/.config/emacs/mango-theme.el b/.config/emacs/mango-theme.el index 904776e..80dc6d2 100644 --- a/.config/emacs/mango-theme.el +++ b/.config/emacs/mango-theme.el @@ -124,6 +124,9 @@ graphically, so I shouldn’t need to have multiple specs per face. :background ,(mango-theme--get-color 'background-cool)) (org-hide :foreground ,(mango-theme--get-color 'background)) + (org-quote + :inherit org-block + :slant italic) ;; Info Page (Info-quoted |