nix-community.nixvim/tests/test-sources/plugins/by-name/kitty-navigator/default.nix

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

26 lines
349 B
Nix
Raw Normal View History

2025-06-09 12:44:34 +02:00
{
empty = {
plugins.kitty-navigator.enable = true;
};
defaults = {
plugins.kitty-navigator = {
enable = true;
settings = {
enable_stack_layout = 0;
};
};
};
example = {
plugins.kitty-navigator = {
enable = true;
settings = {
enable_stack_layout = 1;
};
};
};
}