nix-community.nixvim/plugins/utils/smart-splits.nix
2024-09-02 10:35:52 +01:00

30 lines
493 B
Nix

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