nix-community.nixvim/plugins/utils/smart-splits.nix

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

31 lines
493 B
Nix
Raw Normal View History

2024-02-14 19:05:01 +08:00
{
lib,
pkgs,
helpers,
...
}:
2024-09-01 12:52:28 +01:00
helpers.neovim-plugin.mkNeovimPlugin {
2024-02-14 19:05:01 +08:00
name = "smart-splits";
originalName = "smart-splits.nvim";
defaultPackage = pkgs.vimPlugins.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"
];
};
}