mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-16 15:32:48 +01:00
19 lines
370 B
Nix
19 lines
370 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "indent-tools";
|
|
package = "indent-tools-nvim";
|
|
description = "Neovim plugin for dealing with indentations.";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
settingsExample = {
|
|
textobj = {
|
|
ii = "iI";
|
|
ai = "aI";
|
|
};
|
|
normal = {
|
|
up = false;
|
|
down = false;
|
|
};
|
|
};
|
|
}
|