diff options
author | noa | 2025-02-22 02:38:59 +0800 |
---|---|---|
committer | noa | 2025-02-22 02:38:59 +0800 |
commit | d2bb5f983e9eceea59c685b1df29ceaa17150a47 (patch) | |
tree | 3fbc3634d5d8e405e16832b4daa46a773856fc67 | |
parent | 41bdcda3fc3c568fe16ba7358bc9d8e98223623c (diff) |
Use fixed pitch for tables and dates in org
-rw-r--r-- | emacs/init.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index 13f8dfa..4e9f5d7 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -481,6 +481,10 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." (org-edit-src-content-indentation 0) (org-use-sub-superscripts '{}) + :custom-face + (org-table ((t (:inherit fixed-pitch)))) + (org-date ((t (:inherit fixed-pitch :underline t)))) + :hook ((org-mode . font-lock-mode)) ) |