1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-14 04:51:11 +01:00

plugins/mini-cmdline: init

This commit is contained in:
Heitor Augusto 2025-12-10 19:29:14 -03:00 committed by Matt Sturgeon
parent abd3e966f3
commit f61667b37e
2 changed files with 61 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "mini-cmdline";
moduleName = "mini.cmdline";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
autocomplete.enable = true;
autocorrect.enable = true;
autopeek.enable = true;
};
}