Move projects shortcut to point to OneDrive

This commit is contained in:
2019-06-04 12:42:07 -07:00
parent 63fa8434a0
commit 57745eda6a

View File

@@ -497,7 +497,7 @@ you should place your code here."
(sp-pair "\"" nil :actions :rem)))
(spacemacs/declare-prefix "o" "user prefix")
(set-note-key "o p" "projects" "../Work/projects.org")
(set-note-key "o p" "projects" "~/OneDrive - SRI International/projects.org")
(set-note-key "o b" "boardgames" "Games/BoardGames.org")
(set-note-key "o g" "groceries" "Grocery.org")
(set-note-key "o G" "gloomhaven" "Games/Gloomhaven.org")
@@ -508,7 +508,9 @@ you should place your code here."
key
(lambda ()
(interactive)
(find-file (concat "~/Dropbox/Notes/" note-name))))
(if (cl-search "~" note-name)
(find-file note-name)
(find-file (concat "~/Dropbox/Notes/" note-name)))))
(which-key-add-key-based-replacements (concat "SPC " key) label))
(setq custom-file "~/.dotfiles/emacs-local-custom.el")