plugins/ident-tools: init

This commit is contained in:
Gaetan Lepage 2025-04-30 22:49:38 +02:00
parent eeae362038
commit 913a3521ab
2 changed files with 59 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "indent-tools";
packPathName = "indent-tools.nvim";
package = "indent-tools-nvim";
maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = {
textobj = {
ii = "iI";
ai = "aI";
};
normal = {
up = false;
down = false;
};
};
}