Compare commits
No commits in common. "b777182c817f111c46f53a2c18091bdd7623cca5" and "e0534e89c08544d00d8da7eb32d8f94f909b024a" have entirely different histories.
b777182c81
...
e0534e89c0
|
@ -261,11 +261,6 @@
|
|||
; org mode - multiple agenda buffers
|
||||
(setq org-agenda-sticky t)
|
||||
|
||||
; org show file name in refile, also allows refiling to the file as a top level headline
|
||||
(setq org-refile-use-outline-path 'file)
|
||||
(setq org-outline-path-complete-in-steps nil)
|
||||
(setq org-refile-allow-creating-parent-nodes 'confirm)
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
;; set font for emoji -- DOES NOT WORK ON MOBILE
|
||||
(when (eq system-type 'windows-nt)
|
||||
|
|
|
@ -98,11 +98,6 @@
|
|||
))
|
||||
)
|
||||
|
||||
; use *all* org agenda files as refile targets
|
||||
(setq org-refile-targets
|
||||
'((nil :maxlevel . 3)
|
||||
(org-agenda-files :maxlevel . 3)))
|
||||
|
||||
(require 'org-super-agenda)
|
||||
(org-super-agenda-mode)
|
||||
|
||||
|
|
|
@ -2,14 +2,9 @@
|
|||
; Setup global keys
|
||||
(global-set-key (kbd "C-c l") 'org-store-link)
|
||||
(global-set-key (kbd "C-c a") 'org-agenda)
|
||||
(global-set-key (kbd "C-c s") 'org-schedule)
|
||||
(global-set-key (kbd "C-c c") 'org-capture)
|
||||
(global-set-key (kbd "C-c z") 'org-attach)
|
||||
(global-set-key (kbd "C-c m x") 'org-cut-subtree)
|
||||
(global-set-key (kbd "C-c m r") 'org-archive-subtree)
|
||||
(global-set-key (kbd "C-c m f") 'org-refile)
|
||||
(global-set-key (kbd "C-c m s") 'org-agenda-schedule)
|
||||
(global-set-key (kbd "C-c m d") 'org-agenda-deadline)
|
||||
|
||||
(global-set-key (kbd "C-c d v")
|
||||
(lambda () (interactive) (dired "~/org/Document_Archive"))
|
||||
)
|
||||
|
@ -34,10 +29,10 @@
|
|||
)
|
||||
)
|
||||
(when kmn/is-dayjob
|
||||
(global-set-key (kbd "C-c d t")
|
||||
(global-set-key (kbd "C-c t")
|
||||
(lambda () (interactive) (find-file "~/org/_todo.org"))
|
||||
)
|
||||
(global-set-key (kbd "C-c d s")
|
||||
(global-set-key (kbd "C-c s")
|
||||
(lambda () (interactive) (find-file "~/org/_slipbox.org"))
|
||||
)
|
||||
)
|
||||
|
|
Reference in a new issue