Update org mode file locations.

This commit is contained in:
jowj 2018-12-30 11:39:06 -06:00
parent fde6db797b
commit a90381d3ff

View File

@ -16,11 +16,11 @@
(when (eq system-type 'darwin) (when (eq system-type 'darwin)
(setq mac-command-modifier 'meta)) ; deal with mac command key problems: (setq mac-command-modifier 'meta)) ; deal with mac command key problems:
(setq backup-directory-alist `(("." . "~/Dropbox/org/.saves"))) ; deal with bullshit files in every dir. (setq backup-directory-alist `(("." . "~/Nextcloud/Documents/org/.saves"))) ; deal with bullshit files in every dir.
(set-frame-font "Consolas 12") ; set default font, versions of emacs may require set-default-font (set-frame-font "Consolas 12") ; set default font, versions of emacs may require set-default-font
(setq user-init-file "~/Documents/projects/agares/applicationConfiguration/.emacs/init.el") ;set default init file to agares (setq user-init-file "~/Documents/projects/agares/applicationConfiguration/.emacs/init.el") ;set default init file to agares
(find-file "~/Dropbox/org/personal.org") ;open primary org file on launch (find-file "~/Nextcloud/Documents/org/personal.org") ;open primary org file on launch
(transient-mark-mode 1) ; Enable transient mark mode (transient-mark-mode 1) ; Enable transient mark mode
;; custom emacsland functions ;; custom emacsland functions
@ -60,10 +60,10 @@
(org-agenda-files :maxlevel . 9))) (org-agenda-files :maxlevel . 9)))
(setq org-outline-path-complete-in-steps nil) ; Refile in a single go (setq org-outline-path-complete-in-steps nil) ; Refile in a single go
(setq org-refile-use-outline-path t) ; Show full paths for refiling (setq org-refile-use-outline-path t) ; Show full paths for refiling
(setq org-agenda-files '("~/Dropbox/org/")) ; add files to agenda: (setq org-agenda-files '("~/Nextcloud/Documents/org/")) ; add files to agenda:
(setq org-directory "~/Dropbox/org/") ; define generic org capture shit (setq org-directory "~/Nextcloud/Documents/org/") ; define generic org capture shit
(setq org-default-notes-file (concat org-directory "/refile-beorg.org")) (setq org-default-notes-file (concat org-directory "/refile-beorg.org"))
;; packages ;; packages
@ -119,10 +119,10 @@
;; Your init file should contain only one such instance. ;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right. ;; If there is more than one, they won't work right.
'(org-agenda-files '(org-agenda-files
'("~/Dropbox/org/work.org" "~/Dropbox/org/refile-beorg.org" "~/Dropbox/org/personal.org" "~/Dropbox/org/someday.org")) '("~/Nextcloud/Documents/org/work.org" "~/Nextcloud/Documents/org/refile-beorg.org" "~/Nextcloud/Documents/org/personal.org" "~/Nextcloud/Documents/org/someday.org"))
'(org-capture-templates '(org-capture-templates
'(("c" "generic \"to do\" capture template" entry '(("c" "generic \"to do\" capture template" entry
(file "~/Dropbox/org/refile-beorg.org") (file "~/Nextcloud/Documents/org/refile-beorg.org")
"" :immediate-finish t))) "" :immediate-finish t)))
'(package-selected-packages '(package-selected-packages
'(weechat jedi python-mode pylint py-autopep8 powershell outline-magic markdown-mode magit flycheck exec-path-from-shell elpygen elpy ein doom-themes csharp-mode))) '(weechat jedi python-mode pylint py-autopep8 powershell outline-magic markdown-mode magit flycheck exec-path-from-shell elpygen elpy ein doom-themes csharp-mode)))