nix-community.nixvim/plugins/by-name/smart-splits/default.nix
2024-12-22 10:04:00 +00:00

29 lines
461 B
Nix

{
lib,
helpers,
...
}:
lib.nixvim.plugins.mkNeovimPlugin {
name = "smart-splits";
packPathName = "smart-splits.nvim";
package = "smart-splits-nvim";
maintainers = [ lib.maintainers.foo-dogsquared ];
settingsExample = {
resize_mode = {
quit_key = "<ESC>";
resize_keys = [
"h"
"j"
"k"
"l"
];
silent = true;
};
ignored_events = [
"BufEnter"
"WinEnter"
];
};
}