nix-community.nixvim/plugins/by-name/intellitab/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
426 B
Nix
Raw Normal View History

2021-12-11 16:56:27 +00:00
{
lib,
...
}:
2024-12-22 09:58:27 +00:00
lib.nixvim.plugins.mkVimPlugin {
name = "intellitab";
packPathName = "intellitab.nvim";
package = "intellitab-nvim";
2021-12-11 16:56:27 +00:00
maintainers = [ lib.maintainers.GaetanLepage ];
2021-12-11 16:56:27 +00:00
extraConfig = {
keymaps = [
{
mode = "i";
key = "<Tab>";
action.__raw = "require('intellitab').indent";
}
];
plugins.treesitter = {
settings.indent.enable = true;
2021-12-11 16:56:27 +00:00
};
};
}