1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-21 08:21:14 +01:00
nixvim/plugins/by-name/cord/default.nix
2025-12-13 16:22:08 +00:00

24 lines
484 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 = {
display = {
theme = "atom";
flavor = "accent";
};
editor.tooltip = "Neovim";
timestamp.reset_on_idle = true;
idle = {
enabled = true;
timeout = 900000;
};
text.workspace = "";
};
}