nix-community.nixvim/plugins/by-name/smart-splits/default.nix
Austin Horstman a7012e7864
treewide: originalName -> packPathName
We used to only think of it as the plugin repo's name, but we have been
needing to use it for the name of the plugin's packpath location.
2024-12-13 21:29:00 -06:00

29 lines
464 B
Nix

{
lib,
helpers,
...
}:
helpers.neovim-plugin.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"
];
};
}