nix-community.nixvim/plugins/by-name/cord/default.nix
osbm a41559f093
Some checks are pending
Publish every Git push to main to FlakeHub / flakehub-publish (push) Waiting to run
Publish every git push to Flakestry / publish-flake (push) Waiting to run
Documentation / Version info (push) Waiting to run
Documentation / Build (push) Blocked by required conditions
Documentation / Combine builds (push) Blocked by required conditions
Documentation / Deploy (push) Blocked by required conditions
treewide: add plugin descriptions
2025-06-24 06:10:11 +00:00

34 lines
734 B
Nix

{
lib,
...
}:
lib.nixvim.plugins.mkNeovimPlugin {
name = "cord";
packPathName = "cord.nvim";
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 {}";
};
};
}