1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-05 16:41:06 +01:00
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"
];
};
}