From 7e6c2e3109f47422c9c80a370b37c99d8722e0e8 Mon Sep 17 00:00:00 2001 From: Ching Pei Yang Date: Tue, 24 Mar 2026 15:54:57 +0100 Subject: [PATCH 1/2] language/markdown: markdown.mdx -> mdx --- modules/plugins/languages/markdown.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/plugins/languages/markdown.nix b/modules/plugins/languages/markdown.nix index c8a4c222..33078e6d 100644 --- a/modules/plugins/languages/markdown.nix +++ b/modules/plugins/languages/markdown.nix @@ -21,7 +21,7 @@ marksman = { enable = true; cmd = [(getExe pkgs.marksman) "server"]; - filetypes = ["markdown" "markdown.mdx"]; + filetypes = ["markdown" "mdx"]; root_markers = [".marksman.toml" ".git"]; }; From 0e50bc857ad8e1039961cfc8d55461ae08281fef Mon Sep 17 00:00:00 2001 From: midischwarz12 Date: Tue, 17 Mar 2026 16:14:23 -0500 Subject: [PATCH 2/2] leetcode: avoid duplicate fzf-lua Fixes the following evaluation warning: > evaluation warning: mnw: both startAttrs."fzf-lua" and optAttrs."fzf-lua" are defined and not null > This will cause the plugin to be installed under /opt and /start. --- docs/manual/release-notes/rl-0.9.md | 4 ++++ modules/plugins/utility/leetcode-nvim/config.nix | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/manual/release-notes/rl-0.9.md b/docs/manual/release-notes/rl-0.9.md index b0a424fc..56464d42 100644 --- a/docs/manual/release-notes/rl-0.9.md +++ b/docs/manual/release-notes/rl-0.9.md @@ -64,6 +64,10 @@ - Changed the prettier-plugin-astro build to use `writableTmpDirAsHomeHook` to avoid pnpm hook failures in sandboxed builds. +- Fix `vim.utility.leetcode-nvim` adding `fzf-lua` to `vim.startPlugins` when + `vim.fzf-lua` already manages the plugin lazily, avoiding duplicate `/start` + and `/opt` installs and the corresponding `mnw` evaluation warning. + [taylrfnt](https://github.com/taylrfnt) - Introduce a `darwinModule` option for Darwin users. The ergonomics of diff --git a/modules/plugins/utility/leetcode-nvim/config.nix b/modules/plugins/utility/leetcode-nvim/config.nix index e0b32938..1d205b1b 100644 --- a/modules/plugins/utility/leetcode-nvim/config.nix +++ b/modules/plugins/utility/leetcode-nvim/config.nix @@ -11,7 +11,6 @@ in { vim = { startPlugins = [ "plenary-nvim" - "fzf-lua" "nui-nvim" ];