plugins.obsidian.extraOptions.ui.checkboxes

Define how various check-boxes are displayed. You can also add more custom ones…

NOTE: the ‘char’ value has to be a single character, and the highlight groups are defined in the ui.hl_groups option.

Type: null or (attribute set of (submodule))

Default: null

Plugin default:

{
  " " = {
    char = "󰄱";
    hl_group = "ObsidianTodo";
  };
  "x" = {
    char = "";
    hl_group = "ObsidianDone";
  };
  ">" = {
    char = "";
    hl_group = "ObsidianRightArrow";
  };
  "~" = {
    char = "󰰱";
    hl_group = "ObsidianTilde";
  };
}

Declared by:

plugins.obsidian.extraOptions.ui.checkboxes.<name>.char

The character to use for this checkbox.

Type: string or raw lua code

Declared by:

plugins.obsidian.extraOptions.ui.checkboxes.<name>.hl_group

The name of the highlight group to use for this checkbox.

Type: string or raw lua code

Declared by: