From 8399769076ae756e52beb96d55c431169192178c Mon Sep 17 00:00:00 2001 From: Florian Beisel Date: Fri, 7 Jun 2024 13:24:07 +0200 Subject: [PATCH] Add .logseq/config/config.edn Add .logseq/config/plugins.edn --- dot_logseq/config/config.edn | 12 ++++++++++++ dot_logseq/config/plugins.edn | 2 ++ 2 files changed, 14 insertions(+) create mode 100644 dot_logseq/config/config.edn create mode 100644 dot_logseq/config/plugins.edn diff --git a/dot_logseq/config/config.edn b/dot_logseq/config/config.edn new file mode 100644 index 0000000..624e149 --- /dev/null +++ b/dot_logseq/config/config.edn @@ -0,0 +1,12 @@ +;; This global config file applies a configuration to all graphs. Any config +;; keys from a graph's logseq/config.edn can used here. A graph's +;; logseq/config.edn overrides config keys in this file except for maps which +;; are merged. As an example of merging, the following global and local configs: +;; {:shortcuts {:ui/toggle-theme "t z"}} +;; {:shortcuts {:ui/toggle-brackets "t b"}} +;; +;; would result in the final config: +;; {:shortcuts {:ui/toggle-theme "t z" +;; :ui/toggle-brackets "t b"}} + +{} diff --git a/dot_logseq/config/plugins.edn b/dot_logseq/config/plugins.edn new file mode 100644 index 0000000..bd67d23 --- /dev/null +++ b/dot_logseq/config/plugins.edn @@ -0,0 +1,2 @@ +{:logseq-bujo-theme {:version "1.3.5", :repo "stdword/logseq-bujo-theme", :effect false, :theme true} + :logseq-bullet-threading {:version "v1.1.4", :repo "pengx17/logseq-plugin-bullet-threading", :effect false, :theme false}}