nix-community.nixvim/plugins/by-name/indent-tools/default.nix

21 lines
408 B
Nix
Raw Normal View History

2025-04-30 22:49:38 +02:00
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "indent-tools";
packPathName = "indent-tools.nvim";
package = "indent-tools-nvim";
2025-06-18 02:42:47 +03:00
description = "Neovim plugin for dealing with indentations.";
2025-04-30 22:49:38 +02:00
maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = {
textobj = {
ii = "iI";
ai = "aI";
};
normal = {
up = false;
down = false;
};
};
}