Skip to content

Commit

Permalink
Add missing config options to template and improve existing config docs
Browse files Browse the repository at this point in the history
  • Loading branch information
logseq-cldwalker committed Dec 6, 2022
1 parent db11f48 commit 9e5577a
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions templates/config.edn
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,22 @@
;; Default is true, you can also toggle this via setting page
:ui/enable-tooltip? true

;; Show brackets around page references
;; :ui/show-brackets? true

;; Enable Block timestamp
:feature/enable-block-timestamps? false

;; Enable remove accents when searching.
;; After toggle this option, please remember to rebuild your search index by press (cmd+c cmd+s).
:feature/enable-search-remove-accents? true

;; Enable journals
;; :feature/enable-journals? true

;; Enable flashcards
;; :feature/enable-flashcards? true

;; Disable Built-in Scheduled and deadline Query
;; :feature/disable-scheduled-and-deadline-query? true

Expand Down Expand Up @@ -208,6 +217,7 @@

:ref/linked-references-collapsed-threshold 50

;; Favorites to list on the left sidebar
:favorites []

;; any number between 0 and 1 (the greater it is the faster the changes of the next-interval of card reviews) (default 0.5)
Expand All @@ -232,6 +242,9 @@
;; E.g. :property/separated-by-commas #{:alias :tags}
;; :property/separated-by-commas #{}

;; Properties that are ignored when parsing property values for references
;; :ignored-page-references-keywords #{"author" "startup"}

;; logbook setup
;; :logbook/settings
;; {:with-second-support? false ;limit logbook to minutes, seconds will be eliminated
Expand All @@ -241,20 +254,25 @@

;; Mobile photo uploading setup
;; :mobile/photo
;; {:allow-editing? true}
;; {:allow-editing? true
;; :quality 80}

;; Mobile features options
;; Gestures
;; :mobile
;; {:gestures/disabled-in-block-with-tags ["kanban"]}

;; Extra CodeMirror options
;; See https://codemirror.net/5/doc/manual.html#config for possible options
;; :editor/extra-codemirror-options {:keyMap "emacs" :lineWrapping true}

;; ignore #+keyword: for parsing page references in orgmode
;; :ignored-page-references-keywords #{"author" "startup"}
;; Enable logical outdenting
;; :editor/logical-outdenting? true

;; Enable preferring pasting file from clipboard
;; :editor/preferred-pasting-file? true

;; Quick capture templates for recieving contents from other apps.
;; Quick capture templates for receiving contents from other apps.
;; Each template contains three elements {time}, {text} and {url}, which can be auto-expanded
;; by received contents from other apps. Note: the {} cannot be omitted.
;; - {time}: capture time
Expand Down

0 comments on commit 9e5577a

Please sign in to comment.