yaziPlugins.nav-parent-panel: init at 0-unstable-2025-09-15 (#480104)

This commit is contained in:
Austin Horstman
2026-01-15 05:33:55 +00:00
committed by GitHub
@@ -0,0 +1,30 @@
{
lib,
fetchFromGitHub,
mkYaziPlugin,
}:
mkYaziPlugin {
pname = "nav-parent-panel";
version = "0-unstable-2025-09-15";
src = fetchFromGitHub {
owner = "yaqihou";
repo = "nav-parent-panel.yazi";
rev = "e72b944cf58d227a80bbd816031068870b20178f";
hash = "sha256-jKCCggyldQrdw88DaNXNuLbEq88HgoWc0oCCWTtQF2g=";
};
meta = {
description = "Yazi plugin to navigate between sibling directories";
longDescription = ''
This plugin allows you to cycle through sibling directories (same level
as the current directory) without having to go up to the parent directory.
For a visual demonstration, check
[this example](https://github.com/yaqihou/nav-parent-panel.yazi#example).
'';
homepage = "https://github.com/yaqihou/nav-parent-panel.yazi";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ eljamm ];
};
}