diff options
author | Alan Pearce | 2015-11-16 16:33:45 +0100 |
---|---|---|
committer | Alan Pearce | 2015-11-16 16:33:45 +0100 |
commit | 818df9fc3af1a0f6deb903d262065256938e5676 (patch) | |
tree | 5b14980786c60c742a1857db1e4249a6c817ddf2 | |
parent | b1dd16c2b12ed760658db3f7f47aab3c7234c43e (diff) | |
download | nixfiles-818df9fc3af1a0f6deb903d262065256938e5676.tar.lz nixfiles-818df9fc3af1a0f6deb903d262065256938e5676.tar.zst nixfiles-818df9fc3af1a0f6deb903d262065256938e5676.zip |
Emacs: Set latitude and longitude to Berlin
-rw-r--r-- | tag-emacs/emacs.d/init.org | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 943a5a65..af96248e 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -807,11 +807,13 @@ seems to work perfectly well for me. Weeks start on Monday for me and I prefer ISO-style dates. #+BEGIN_SRC emacs-lisp -(req-package calendar - :defer 1 - :config (progn - (setq calendar-week-start-day 1) - (calendar-set-date-style 'iso))) + (req-package calendar + :defer 1 + :config (progn + (setq calendar-week-start-day 1) + (calendar-set-date-style 'iso) + (setq calendar-latitude 52.52 + calendar-longitude 13.40))) #+END_SRC Sometimes I want to insert a date or time into a buffer. |