1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-25 19:51:06 +01:00
nixvim/plugins/by-name/indent-tools/default.nix

20 lines
408 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "indent-tools";
packPathName = "indent-tools.nvim";
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;
};
};
}