mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
19 lines
344 B
Nix
19 lines
344 B
Nix
{ 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;
|
|
};
|
|
};
|
|
}
|