Add social media to agenda and fix config tangle

This commit is contained in:
Chris Cochrun 2021-04-13 06:01:53 -05:00
parent 3bb5e9ff23
commit 6adc481269
2 changed files with 11 additions and 8 deletions

View file

@ -812,7 +812,7 @@ Part of this config includes some special capture templates for my work as a you
"/home/chris/org/ministry_team.org"
"/home/chris/org/todo.org"
"/home/chris/org/newsletter.org"
))
"/home/chris/org/nvtfc_social_media.org"))
;; (add-to-list '("/home/chris/org/inbox.org"
;; "/home/chris/org/notes.org"
;; "/home/chris/org/repetition.org"
@ -862,9 +862,10 @@ Part of this config includes some special capture templates for my work as a you
(chris/leader-keys
:states 'normal
:keymaps 'override
"o a" 'org-agenda
"oa" 'org-agenda
"c" 'org-capture
"rr" 'org-refile)
"rr" 'org-refile
"e" 'org-export-dispatch)
('normal org-agenda-mode-map
"q" 'org-agenda-quit
"r" 'org-agenda-redo
@ -899,7 +900,7 @@ We are also going to make our config auto-tangle. This is so helpful on saving t
#+begin_src emacs-lisp
(defun chris/org-babel-tangle-config ()
(when (string-equal (buffer-file-name)
(expand-file-name "~/.emacs.d/README.org"))
(expand-file-name "README.org" user-emacs-directory))
(let ((org-confirm-babel-evaluate nil))
(org-babel-tangle))))
@ -907,6 +908,7 @@ We are also going to make our config auto-tangle. This is so helpful on saving t
:append :local)))
#+end_src
We also need to add =evil-org= to make better keybindings.
#+begin_src emacs-lisp
(use-package evil-org

View file

@ -522,7 +522,7 @@ vertically."
"/home/chris/org/ministry_team.org"
"/home/chris/org/todo.org"
"/home/chris/org/newsletter.org"
))
"/home/chris/org/nvtfc_social_media.org"))
;; (add-to-list '("/home/chris/org/inbox.org"
;; "/home/chris/org/notes.org"
;; "/home/chris/org/repetition.org"
@ -572,9 +572,10 @@ vertically."
(chris/leader-keys
:states 'normal
:keymaps 'override
"o a" 'org-agenda
"oa" 'org-agenda
"c" 'org-capture
"rr" 'org-refile)
"rr" 'org-refile
"e" 'org-export-dispatch)
('normal org-agenda-mode-map
"q" 'org-agenda-quit
"r" 'org-agenda-redo
@ -603,7 +604,7 @@ vertically."
(defun chris/org-babel-tangle-config ()
(when (string-equal (buffer-file-name)
(expand-file-name "~/.emacs.d/README.org"))
(expand-file-name "README.org" user-emacs-directory))
(let ((org-confirm-babel-evaluate nil))
(org-babel-tangle))))