Bubble up Calendar stuff

and fix a typo as well
master
Jacopo De Simoi 8 years ago
parent a5030db11d
commit 43707ac278
  1. 14
      global.org
  2. 4
      init/init-org.el

@ -327,6 +327,17 @@
#+BEGIN_SRC emacs-lisp
(setq compilation-ask-about-save nil)
#+END_SRC
** Calendar
#+BEGIN_SRC emacs-lisp
(add-hook 'calendar-load-hook
(lambda ()
(calendar-set-date-style 'european)))
;; first day of the week is monday instead of sunday:
(setq calendar-week-start-day 1)
(setq calendar-location-name "Toronto, ON Canada")
(setq calendar-latitude 43.7)
(setq calendar-longitude -79.4)
#+END_SRC
** Use system proxy
#+BEGIN_SRC emacs-lisp
;; Use system proxy
@ -468,9 +479,6 @@
#+END_SRC
** Leftovers
#+BEGIN_SRC emacs-lisp
(setq european-calendar-style 't)
;; first day of the week is monday instead of sunday:
(setq calendar--week--start--day 1)
;; * toorg
(require 'highlight-sexps)

@ -62,10 +62,6 @@
(tags-todo "5m")
(tags-todo "20m")))))
(setq calendar-latitude 43.7)
(setq calendar-longitude -79.4)
(setq calendar-location-name "Toronto, ON Canada")
;; some super-clever stuff
;; [https://emacs.stackexchange.com/questions/39032/tangle-the-same-src-block-to-different-files]
(defun org-babel-tangle-collect-blocks-handle-tangle-list (&optional language tangle-file)

Loading…
Cancel
Save