1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/plugins/by-name/neocord/default.nix
saygo-png aa3a1dfb02 plugins/neocord: cleanup, remove settings declarations
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-11-04 22:00:38 +00:00

36 lines
894 B
Nix

{
lib,
...
}:
lib.nixvim.plugins.mkNeovimPlugin {
name = "neocord";
description = "Discord Rich Presence for Neovim (Fork of presence.nvim).";
maintainers = [ ];
settingsExample = {
# General options
auto_update = true;
logo = "auto";
logo_tooltip = null;
main_image = "language";
client_id = "1157438221865717891";
log_level = null;
debounce_timeout = 10;
enable_line_number = false;
blacklist = [ ];
file_assets = null;
show_time = true;
global_timer = false;
# Rich Presence text options
editing_text = "Editing...";
file_explorer_text = "Browsing...";
git_commit_text = "Committing changes...";
plugin_manager_text = "Managing plugins...";
reading_text = "Reading...";
workspace_text = "Working on %s";
line_number_text = "Line %s out of %s";
terminal_text = "Using Terminal...";
};
}