Config

Journal note

Namespace for Journal related configurations.

dailyDomain

Sets the domain where the daily journals are kept

  • default: "daily"

dailyVault

Sets the name of the vault where daily journals are kept. If not set, defaults to current open vault.

  • default: none

name

Sets the name for journal notes

  • default: "journal"

dateFormat

Sets the date format to be used for journal notes. Use luxon style formatting

  • default: "y.MM.dd"

addBehavior

Sets the strategy for adding new journal notes. This only applies to regular journal notes but not to Daily Journal Notes. For possible options, see addBehavior options

  • default: "childOfDomain"

Scratch note

Namespace for Scratch note related configurations.

name

Sets the name for scratch notes

  • default: "scratch"

dateFormat

Sets the date format to be used for scratch notes. Use luxon style formatting

  • default: "y.MM.dd.HHmmss"

addBehavior

Sets the strategy for adding new scratch notes. For possible options, see addBehavior options

  • default: "asOwnDomain"

Task note

Configuration for tasks are under workspace.task namespace

workspace:
  task:
    ...

General

Task Display

Dendron uses this configuration to map the priority and status symbols used in the frontmatter to what gets displayed on the screen. By changing these configurations, you can change what gets displayed.

workspace:
    ...
    task:
        statusSymbols:
            "": " "
            "done": "x"
            ...
        prioritySymbols:
            H: "high"
            M: "medium"
            L: "low"
        taskCompleteStatus: ["x", "done"]

Extensions


Backlinks