From 1d17c4b24334e3134a3e45c82f8b2fabd0e770dd Mon Sep 17 00:00:00 2001 From: PartyWumpus <48649272+PartyWumpus@users.noreply.github.com> Date: Wed, 17 Sep 2025 19:21:05 +0100 Subject: [PATCH] add the newer conceal_in_normal option --- modules/plugins/languages/typst.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/plugins/languages/typst.nix b/modules/plugins/languages/typst.nix index da3b462d..32bce676 100644 --- a/modules/plugins/languages/typst.nix +++ b/modules/plugins/languages/typst.nix @@ -193,6 +193,12 @@ in { type = str; default = getExe pkgs.typst; description = "Where should typst-concealer look for your typst binary?"; + example = ''lib.getExe pkgs.typst''; + }; + conceal_in_normal = mkOption { + type = nullOr bool; + default = null; + description = "Should typst-concealer still conceal when the normal mode cursor goes over a line."; }; }; };