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" ];