aboutsummaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <msabate@suse.com>2018-05-24 10:31:31 +0200
committerMiquel Sabaté Solà <msabate@suse.com>2018-05-24 10:31:31 +0200
commitddaa8db71710a6b91335a5064a17283ce69cfefd (patch)
tree09bc392e947c15b02e5e995b7d897b5b366ab099 /emacs
parenta782d2eb266d14122f85222240c94b7ddc0d5ce5 (diff)
downloaddotfiles-ddaa8db71710a6b91335a5064a17283ce69cfefd.tar.gz
dotfiles-ddaa8db71710a6b91335a5064a17283ce69cfefd.zip
emacs: style
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.org38
1 files changed, 25 insertions, 13 deletions
diff --git a/emacs/init.org b/emacs/init.org
index 43a4379..a9e84af 100644
--- a/emacs/init.org
+++ b/emacs/init.org
@@ -1195,19 +1195,20 @@ To avoid UID clashes. See [[http://pragmaticemacs.com/emacs/fixing-duplicate-uid
Miscellaneous settings.
#+BEGIN_SRC elisp
- (setq mu4e-html2text-command "w3m -T text/html"
- mu4e-attachment-dir "~/Downloads"
- mu4e-headers-date-format "%Y-%m-%d %H:%M"
- message-citation-line-format "%N @ %Y-%m-%d %H:%M %Z:\n"
- message-citation-line-function 'message-insert-formatted-citation-line
- message-kill-buffer-on-exit t
- mu4e-get-mail-command "mbsync -aqV"
- mu4e-update-interval 600
- mu4e-compose-dont-reply-to-self t
- mu4e-compose-format-flowed t
- mu4e-headers-skip-duplicates t
- mu4e-headers-include-related t
- mu4e-headers-auto-update t)
+(setq mu4e-html2text-command "w3m -T text/html"
+ mu4e-attachment-dir "~/Downloads"
+ mu4e-headers-date-format "%Y-%m-%d %H:%M"
+ message-citation-line-format "%N @ %Y-%m-%d %H:%M %Z:\n"
+ message-citation-line-function 'message-insert-formatted-citation-line
+ message-kill-buffer-on-exit t
+ mu4e-get-mail-command "mbsync -aqV"
+ mu4e-update-interval 600
+ mu4e-compose-dont-reply-to-self t
+ mu4e-compose-format-flowed t
+ mu4e-view-show-addresses t
+ mu4e-headers-skip-duplicates t
+ mu4e-headers-include-related t
+ mu4e-headers-auto-update t)
#+END_SRC
The headers to show in the headers list a pair of a field and its width,
@@ -1466,6 +1467,17 @@ Setup a function to toggle =org-publish-current-file= on save:
(message "Enabled org-publish-current-file for current buffer...")))
#+END_SRC
+Also hide the "Footnotes: " title on footnotes:
+
+#+BEGIN_SRC elisp
+(setq org-html-footnotes-section "<div id=\"footnotes\">
+<!-- Hack: %s -->
+<div id=\"text-footnotes\">
+%s
+</div>
+</div>")
+#+END_SRC
+
** Agenda
Custom commands for =org-agenda=.