summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2021-01-01 10:56:51 -0600
committerCase Duckworth2021-01-01 10:57:13 -0600
commit00e0b47374c5b8e1a6109718f627016b2ab4eeac (patch)
treefc6cdacfcfd5a965bc3c6169d89edead5384f134 /config.org
parentAdd variable-pitch-mode (diff)
downloademacs-00e0b47374c5b8e1a6109718f627016b2ab4eeac.tar.gz
emacs-00e0b47374c5b8e1a6109718f627016b2ab4eeac.zip
Add org-tag face
Diffstat (limited to 'config.org')
-rw-r--r--config.org14
1 files changed, 14 insertions, 0 deletions
diff --git a/config.org b/config.org index 89fe21b..b4a6d6f 100644 --- a/config.org +++ b/config.org
@@ -1027,6 +1027,20 @@ I’ve put org mode under Applications, as opposed to Writing, because it’s m
1027(cuss org-directory "~/Org") 1027(cuss org-directory "~/Org")
1028#+END_SRC 1028#+END_SRC
1029 1029
1030**** Tags
1031
1032#+begin_src emacs-lisp
1033 (cuss org-tags-column 0
1034 "Show tags directly after the headline.
1035 This is the best-looking option with variable-pitch fonts.")
1036
1037 (cussface
1038 '(org-tag
1039 ((t
1040 (:height 0.8 :weight normal :slant italic :foreground "grey40" :inherit
1041 (variable-pitch))))))
1042#+end_src
1043
1030*** Org Agenda 1044*** Org Agenda
1031 1045
1032#+BEGIN_SRC emacs-lisp 1046#+BEGIN_SRC emacs-lisp