Merge branch 'master' of gitlab.com:chriscochrun/dotemacs
This commit is contained in:
commit
0398122164
|
@ -814,7 +814,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"
|
||||
|
@ -866,7 +866,8 @@ Part of this config includes some special capture templates for my work as a you
|
|||
:keymaps 'override
|
||||
"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
|
||||
|
@ -901,7 +902,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))))
|
||||
|
||||
|
@ -909,6 +910,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
|
||||
|
|
7
init.el
7
init.el
|
@ -520,7 +520,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,7 +572,8 @@ vertically."
|
|||
:keymaps 'override
|
||||
"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
|
||||
|
@ -601,7 +602,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))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue