mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-16 15:31:52 +02:00
plugins/comment: fix lazy loading
Some checks failed
Publish every Git push to main to FlakeHub / flakehub-publish (push) Has been cancelled
Publish every git push to Flakestry / publish-flake (push) Has been cancelled
Documentation / Version info (push) Has been cancelled
Documentation / Build (push) Has been cancelled
Documentation / Combine builds (push) Has been cancelled
Documentation / Deploy (push) Has been cancelled
Some checks failed
Publish every Git push to main to FlakeHub / flakehub-publish (push) Has been cancelled
Publish every git push to Flakestry / publish-flake (push) Has been cancelled
Documentation / Version info (push) Has been cancelled
Documentation / Build (push) Has been cancelled
Documentation / Combine builds (push) Has been cancelled
Documentation / Deploy (push) Has been cancelled
case sensitive path name so that lz.n finds it on case sensitive file systems
This commit is contained in:
parent
a16c89c175
commit
0b87d94432
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@
|
||||||
with lib;
|
with lib;
|
||||||
lib.nixvim.plugins.mkNeovimPlugin {
|
lib.nixvim.plugins.mkNeovimPlugin {
|
||||||
name = "comment";
|
name = "comment";
|
||||||
packPathName = "Comment.nvim";
|
packPathName = "comment.nvim";
|
||||||
moduleName = "Comment";
|
moduleName = "Comment";
|
||||||
package = "comment-nvim";
|
package = "comment-nvim";
|
||||||
description = "Smart and powerful comment plugin for Neovim.";
|
description = "Smart and powerful comment plugin for Neovim.";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue