mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
24 lines
426 B
Nix
24 lines
426 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.mkVimPlugin {
|
|
name = "intellitab";
|
|
packPathName = "intellitab.nvim";
|
|
package = "intellitab-nvim";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
extraConfig = {
|
|
keymaps = [
|
|
{
|
|
mode = "i";
|
|
key = "<Tab>";
|
|
action.__raw = "require('intellitab').indent";
|
|
}
|
|
];
|
|
plugins.treesitter = {
|
|
settings.indent.enable = true;
|
|
};
|
|
};
|
|
}
|