1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-18 00:12:48 +01:00
nixvim/tests/test-sources/plugins/by-name/presence/default.nix
saygo-png 79d53a50e2 tests: use __empty and __raw
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-11-05 21:26:13 +00:00

55 lines
1.4 KiB
Nix

{
empty = {
plugins.presence.enable = true;
};
defaults = {
plugins.presence = {
enable = true;
settings = {
auto_update = true;
neovim_image_text = "The One True Text Editor";
main_image = "neovim";
client_id = "793271441293967371";
log_level.__raw = "nil";
debounce_timeout = 10;
enable_line_number = false;
blacklist.__empty = { };
file_assets.__raw = "nil";
show_time = true;
buttons.__empty = { };
editing_text = "Editing %s";
file_explorer_text = "Browsing %s";
git_commit_text = "Committing changes";
plugin_manager_text = "Managing plugins";
reading_text = "Reading %s";
workspace_text = "Working on %s";
line_number_text = "Line %s out of %s";
};
};
};
example = {
plugins.presence = {
enable = true;
settings = {
auto_update = false;
neovim_image_text = "The Superior Text Editor";
main_image = "file";
editing_text = "Crafting %s";
workspace_text = "Working on %s";
enable_line_number = true;
buttons = [
{
label = "GitHub";
url = "https://github.com/username";
}
];
blacklist = [
"NvimTree"
"alpha"
];
};
};
};
}