nix-community.nixvim/plugins/by-name/smart-splits/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
638 B
Nix
Raw Normal View History

2024-02-14 19:05:01 +08:00
{
lib,
helpers,
...
}:
2024-12-22 09:58:27 +00:00
lib.nixvim.plugins.mkNeovimPlugin {
2024-02-14 19:05:01 +08:00
name = "smart-splits";
packPathName = "smart-splits.nvim";
package = "smart-splits-nvim";
2025-06-18 02:42:47 +03:00
description = "Smarter and more intuitive split pane management that uses a mental model of left/right/up/down instead of wider/narrower/taller/shorter for resizing splits.";
2024-02-14 19:05:01 +08:00
maintainers = [ lib.maintainers.foo-dogsquared ];
settingsExample = {
resize_mode = {
quit_key = "<ESC>";
resize_keys = [
"h"
"j"
"k"
"l"
];
silent = true;
};
ignored_events = [
"BufEnter"
"WinEnter"
];
};
}