···11+# Leave blank to try to import from Obsidian Daily Notes
22+dailynote = "%Y-%m-%d" # this is akin to YYYY-MM-DD from Obsidian
33+44+# Fuzzy match file headings in completions
55+heading_completions = true
66+77+# Set true if you title your notes by the first heading
88+# Right now, if true this will cause completing a file link in the markdown style
99+# to insert the name of the first heading in the display text area
1010+# [](file) -> [first heading of file.md](file)
1111+# If false, [](file) -> [](file) (for example)
1212+title_headings = true
1313+1414+# Show diagnostics for unresolved links; note that even if this is turned off,
1515+# special semantic tokens will be sent for the unresolved links, allowing you
1616+# to visually identify unresolved links
1717+unresolved_diagnostics = true
1818+1919+semantic_tokens = true
2020+2121+# Resolve tags in code blocks
2222+tags_in_codeblocks = false
2323+# Resolve references in code blocks
2424+references_in_codeblocks = false
2525+2626+# The folder for new files to be created in; this is relevant for the code action that creates
2727+# from an unresolved link. If not specified, it will import from your obsidian config option titled
2828+# "Default Location for new notes" -- which is "" by default too.
2929+new_file_folder_path = ""
3030+3131+3232+# The folder for new daily notes: this is applied for the create file for unresolved link code action
3333+# as well as the Today, Tomorrow, Yesterday, and Daily... lsp commands
3434+#
3535+# This is also imported from obsidian if not specified: specifically the option titled "New file location"
3636+daily_notes_folder = ""
3737+3838+3939+# Whether markdown links should include an extension or not
4040+# for example [File](file.md) or [File](file)
4141+include_md_extension_md_link = false
4242+4343+# Whether wikilinks should include an extension or not (needed for Markor compatibility)
4444+# for example [[File]] or [[File.md]]
4545+include_md_extension_wikilink = false
4646+4747+# Enable hover; this is relevant for VSCode and Zed where hover could be triggered on mouse hover
4848+# and could be annoying
4949+hover = true
5050+5151+# Handle case in fuzzy matches: Ignore | Smart | Respect
5252+case_matching = "Smart"
5353+5454+# Enable inlay hints
5555+inlay_hints = true
5656+# Enable transclusion, in the form of inlay hints, for embedded block links: ![[link]]
5757+# Inlay hints must be enabled
5858+block_transclusion = true
5959+# Full or Partial, for Partial, block_transclusion_length = { partial = 10 }
6060+# block_transclusion must be enabled for this to take effect
6161+block_transclusion_length = "Full"
6262+6363+# Link file names only
6464+# Enables autocompleting by heading but inserting link to filename (instead of filename + heading)
6565+# Useful for unique notes / Zettelkasten users
6666+link_filenames_only = false