1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-17 07:52:47 +01:00
nixvim/plugins/by-name/cord/default.nix
saygo-png c4b27080a6 treewide: infer packPathName menial work
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-09-27 23:49:59 +00:00

33 lines
704 B
Nix

{
lib,
...
}:
lib.nixvim.plugins.mkNeovimPlugin {
name = "cord";
package = "cord-nvim";
description = "A Neovim plugin that displays the current activity in Discord.";
maintainers = [ lib.maintainers.eveeifyeve ];
settingsExample = {
usercmd = false;
display = {
show_time = true;
swap_fields = false;
swap_icons = false;
};
ide = {
enable = true;
show_status = true;
timeout = 300000;
text = "Idle";
tooltip = "💤";
};
text = {
viewing = "Viewing {}";
editing = "Editing {}";
file_browser = "Browsing files in {}";
vcs = "Committing changes in {}";
workspace = "In {}";
};
};
}