1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-17 07:52:47 +01:00
nixvim/tests/test-sources/plugins/by-name/kitty-navigator/default.nix
2025-06-09 19:21:44 +00:00

25 lines
349 B
Nix

{
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;
};
};
};
}