mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
25 lines
491 B
Nix
25 lines
491 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "cybu";
|
|
package = "cybu-nvim";
|
|
|
|
maintainers = [ lib.maintainers.Fovir ];
|
|
|
|
settingsExample = {
|
|
behavior = {
|
|
mode = {
|
|
default = {
|
|
switch = "immediate";
|
|
view = "rolling";
|
|
};
|
|
last_used = {
|
|
switch = "on_close";
|
|
update_on = "buf_enter";
|
|
view = "paging";
|
|
};
|
|
};
|
|
};
|
|
display_time = 750;
|
|
style.devicons.enabled = false;
|
|
};
|
|
}
|