mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
29 lines
461 B
Nix
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"
|
|
];
|
|
};
|
|
}
|