Merge branch 'master' of github.com:IvanMalison/dotfiles
This commit is contained in:
commit
a3088e7d4e
@ -1110,6 +1110,11 @@ Sets environment variables by starting a shell
|
|||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package discover-my-major)
|
(use-package discover-my-major)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
*** refine
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package refine
|
||||||
|
:disabled t)
|
||||||
|
#+END_SRC
|
||||||
** Keybindings
|
** Keybindings
|
||||||
*** bind-key
|
*** bind-key
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
@ -1416,13 +1421,14 @@ Sets environment variables by starting a shell
|
|||||||
(defvar imalison:org-gtd-file "~/org/gtd.org")
|
(defvar imalison:org-gtd-file "~/org/gtd.org")
|
||||||
(defvar imalison:org-habits-file "~/org/habits.org")
|
(defvar imalison:org-habits-file "~/org/habits.org")
|
||||||
(defvar imalison:org-calendar-file "~/org/calendar.org")
|
(defvar imalison:org-calendar-file "~/org/calendar.org")
|
||||||
|
(defvar imalison:org-inbox-file "~/org/inbox.org")
|
||||||
|
|
||||||
(unless (boundp 'org-capture-templates)
|
(unless (boundp 'org-capture-templates)
|
||||||
(defvar org-capture-templates nil))
|
(defvar org-capture-templates nil))
|
||||||
|
|
||||||
(imalison:add-to-org-agenda-files
|
(imalison:add-to-org-agenda-files
|
||||||
(list imalison:org-gtd-file imalison:org-habits-file
|
(list imalison:org-gtd-file imalison:org-habits-file
|
||||||
imalison:org-calendar-file))
|
imalison:org-calendar-file imalison:org-inbox-file))
|
||||||
|
|
||||||
(add-to-list 'org-capture-templates
|
(add-to-list 'org-capture-templates
|
||||||
`("t" "GTD Todo (Linked)" entry (file ,imalison:org-gtd-file)
|
`("t" "GTD Todo (Linked)" entry (file ,imalison:org-gtd-file)
|
||||||
@ -1651,6 +1657,17 @@ Sets environment variables by starting a shell
|
|||||||
(setq org-reveal-root
|
(setq org-reveal-root
|
||||||
(imalison:join-paths "file://" imalison:projects-directory "reveal.js")))
|
(imalison:join-paths "file://" imalison:projects-directory "reveal.js")))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
**** org-caldav
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package org-caldav
|
||||||
|
:defer t
|
||||||
|
:config
|
||||||
|
(progn
|
||||||
|
(setq org-caldav-url "https://www.google.com/calendar/dav"
|
||||||
|
org-caldav-inbox imalison:org-inbox-file
|
||||||
|
org-caldav-files (list imalison:org-calendar-file)
|
||||||
|
org-icalendar-timezone "America/Los_Angeles")))
|
||||||
|
#+END_SRC
|
||||||
*** TeX
|
*** TeX
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package tex
|
(use-package tex
|
||||||
|
Loading…
Reference in New Issue
Block a user