mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
25 lines
349 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|