From c6aa931d620cf18c32d8d366ad2b49cae01b2265 Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Mon, 14 Feb 2022 12:38:06 +0100 Subject: [PATCH] Auto saved by Logseq --- ...rpreting islam.md => interpreting islam.md | 0 pages/logseq bugs.md => logseq bugs.md | 0 ...ocument mode.md => logseq document mode.md | 0 ...eq marketplace.md => logseq marketplace.md | 0 ...logseq_config.edn.2022-02-14T11_37_23.732Z | 90 +++++++++++++++++++ logseq/config.edn | 2 +- 6 files changed, 91 insertions(+), 1 deletion(-) rename pages/interpreting islam.md => interpreting islam.md (100%) rename pages/logseq bugs.md => logseq bugs.md (100%) rename pages/logseq document mode.md => logseq document mode.md (100%) rename pages/logseq marketplace.md => logseq marketplace.md (100%) create mode 100644 logseq/bak/logseq_config.edn.2022-02-14T11_37_23.732Z diff --git a/pages/interpreting islam.md b/interpreting islam.md similarity index 100% rename from pages/interpreting islam.md rename to interpreting islam.md diff --git a/pages/logseq bugs.md b/logseq bugs.md similarity index 100% rename from pages/logseq bugs.md rename to logseq bugs.md diff --git a/pages/logseq document mode.md b/logseq document mode.md similarity index 100% rename from pages/logseq document mode.md rename to logseq document mode.md diff --git a/pages/logseq marketplace.md b/logseq marketplace.md similarity index 100% rename from pages/logseq marketplace.md rename to logseq marketplace.md diff --git a/logseq/bak/logseq_config.edn.2022-02-14T11_37_23.732Z b/logseq/bak/logseq_config.edn.2022-02-14T11_37_23.732Z new file mode 100644 index 000000000..4fcdda88b --- /dev/null +++ b/logseq/bak/logseq_config.edn.2022-02-14T11_37_23.732Z @@ -0,0 +1,90 @@ +{:journal-basis "daily" + + ;; [[flancian]] +:journal/page-title-format "yyyy-MM-dd" +:journal/file-name-format "yyyy-MM-dd" +:pages-directory "" +:journals-directory "journal" + + :project { + ;; Selected public notes can be published to https://logseq.com/your-project-or-your-username. + :name "" + :alias "" + ;; your twitter handle + :twitter "" + ;; description supports both hiccup and html + :description ""} + + ;; Currently, we support either "Markdown" or "Org". + ;; This can overwrite your global preference so that + ;; maybe your personal preferred format is Org but you'd + ;; need to use Markdown for some projects. + ;; :preferred-format "" + + ;; Git settings + :git-pull-secs 60 + :git-push-secs 10 + :git-auto-push true + + ;; The app will ignore those directories or files. + ;; E.g. "/archived" "/test.md" + :hidden [] + + ;; When creating the new journal page, the app will use your template content here. + ;; Example for Markdown users: "## [[Work]]\n###\n## [[Family]]\n###\n + ;; Example for Org mode users: "** [[Work]]\n***\n** [[Family]]\n***\n + :default-templates + {:journals ""} + + ;; The app will show those queries in today's journal page, + ;; the "NOW" query asks the tasks which need to be finished "now", + ;; the "NEXT" query asks the future tasks. + :default-queries + {:journals + [{:title "🔨 NOW" + :query [:find (pull ?h [*]) + :in $ ?start ?today + :where + [?h :block/marker ?marker] + [?h :block/page ?p] + [?p :page/journal? true] + [?p :page/journal-day ?d] + [(>= ?d ?start)] + [(<= ?d ?today)] + [(contains? #{"NOW" "DOING"} ?marker)]] + :inputs [:14d :today] + :result-transform (fn [result] + (sort-by (fn [h] + (get h :block/priority "Z")) result)) + :collapsed? false} + {:title "📅 NEXT" + :query [:find (pull ?h [*]) + :in $ ?start ?next + :where + [?h :block/marker ?marker] + [?h :block/ref-pages ?p] + [?p :page/journal? true] + [?p :page/journal-day ?d] + [(> ?d ?start)] + [(< ?d ?next)] + [(contains? #{"NOW" "LATER" "TODO"} ?marker)]] + :inputs [:today :7d-after] + :collapsed? false}]} + + ;; Add your own commands to speedup. + ;; E.g. [["js" "Javascript"]] + :commands + [] + + ;; Macros replace texts and will make you more productive. + ;; For example: + ;; Add this to the macros below: + ;; {"poem" "Rose is $1, violet's $2. Life's ordered: Org assists you."} + ;; input "{{{poem(red,blue)}}}" + ;; becomes + ;; Rose is red, violet's blue. Life's ordered: Org assists you. + :macros {} + :markdown/version 2 + :date-formatter "yyyy-MM-dd" + :editor/logical-outdenting? true + :favorites ["agora"]} diff --git a/logseq/config.edn b/logseq/config.edn index 4fcdda88b..ea5eac8ee 100644 --- a/logseq/config.edn +++ b/logseq/config.edn @@ -3,7 +3,7 @@ ;; [[flancian]] :journal/page-title-format "yyyy-MM-dd" :journal/file-name-format "yyyy-MM-dd" -:pages-directory "" +:pages-directory "." :journals-directory "journal" :project {