1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-17 16:02:48 +01:00
nixvim/plugins/by-name/intellitab/default.nix
saygo-png c4b27080a6 treewide: infer packPathName menial work
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-09-27 23:49:59 +00:00

24 lines
449 B
Nix

{
lib,
...
}:
lib.nixvim.plugins.mkVimPlugin {
name = "intellitab";
package = "intellitab-nvim";
description = "A neovim plugin to only press tab once.";
maintainers = [ lib.maintainers.GaetanLepage ];
extraConfig = {
keymaps = [
{
mode = "i";
key = "<Tab>";
action.__raw = "require('intellitab').indent";
}
];
plugins.treesitter = {
settings.indent.enable = true;
};
};
}