From 42d55b8ac49143971f4ba79e72262442e9bc974b Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Fri, 1 Aug 2025 18:49:53 -0500 Subject: [PATCH] plugins/comment: fix lazy loading case sensitive path name so that lz.n finds it on case sensitive file systems --- plugins/by-name/comment/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/by-name/comment/default.nix b/plugins/by-name/comment/default.nix index 625d2f74..cc2a0e6d 100644 --- a/plugins/by-name/comment/default.nix +++ b/plugins/by-name/comment/default.nix @@ -6,7 +6,7 @@ with lib; lib.nixvim.plugins.mkNeovimPlugin { name = "comment"; - packPathName = "Comment.nvim"; + packPathName = "comment.nvim"; moduleName = "Comment"; package = "comment-nvim"; description = "Smart and powerful comment plugin for Neovim.";