synching all my documents to my tablet

This commit is contained in:
Danilo Reyes 2025-04-11 23:10:42 -06:00
parent 31b8164efc
commit f7f477cca5
3 changed files with 3 additions and 8 deletions

View File

@ -22,11 +22,7 @@ putting these variables on top, will make it easier to make this file modular.
#+begin_src emacs-lisp :tangle ./config.el #+begin_src emacs-lisp :tangle ./config.el
(defvar my/org-device (or (getenv "ORG_DEVICE") "default")) (defvar my/org-device (or (getenv "ORG_DEVICE") "default"))
(defvar my/org-base-dir (defvar my/org-base-dir "~/Documents/Notes/")
(cond
((string= my/org-device "galaxy") "~/notes")
((string= my/org-device "workstation") "~/Documents/Notes/")
(t "~/Documents/Notes/")))
(defvar my/doom-config-dir (defvar my/doom-config-dir
(cond (cond
((string= my/org-device "galaxy") "~/.config/doom/") ((string= my/org-device "galaxy") "~/.config/doom/")

View File

@ -61,6 +61,7 @@
(package! ini-mode) (package! ini-mode)
(package! insert-esv) ;; bible passages (package! insert-esv) ;; bible passages
(package! olivetti) ;; writing mode centering text, looks like word (package! olivetti) ;; writing mode centering text, looks like word
(package! org-alert)
(package! org-auto-tangle) (package! org-auto-tangle)
(package! org-roam-ui) (package! org-roam-ui)
(package! org-transclusion) (package! org-transclusion)
@ -80,7 +81,6 @@
;; (package! flycheck-aspell) ;; (package! flycheck-aspell)
;; (package! ivy-posframe) ;; (package! ivy-posframe)
;; (package! mw-thesaurus) ;; (package! mw-thesaurus)
;; (package! org-alert)
;; (package! org-appear) ;; couldn't get it to work ;; (package! org-appear) ;; couldn't get it to work
;; (package! org-recur) ;; works but I want to keep org vanilla ;; (package! org-recur) ;; works but I want to keep org vanilla
;; (package! ox-chameleon ;; (package! ox-chameleon

View File

@ -66,10 +66,9 @@ in
]; ];
}; };
notes = { notes = {
path = "~/Documents/Notes/"; path = "~/Documents/";
ignorePerms = false; ignorePerms = false;
devices = [ "galaxy" ]; devices = [ "galaxy" ];
label = "Notes";
}; };
}; };
}; };