mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-18 00:12:48 +01:00
55 lines
1.4 KiB
Nix
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"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|