feat: add presence.nvim config options

This commit is contained in:
NotAShelf 2023-02-18 15:32:43 +03:00
commit 31e7645ce1
No known key found for this signature in database
GPG key ID: 5B5C8895F28445F1
5 changed files with 131 additions and 33 deletions

View file

@ -1,5 +1,5 @@
_: {
imports = [
./discord-nvim.nix
./presence-nvim.nix
];
}

View file

@ -10,6 +10,91 @@ with builtins; let
in {
options.vim.presence.presence-nvim = {
enable = mkEnableOption "Enable presence.nvim plugin";
image_text = mkOption {
type = types.str;
default = "The One True Text Editor";
description = "Text displayed when hovering over the Neovim image";
};
main_image = mkOption {
type = types.str;
default = "neovim";
description = "Main image to be displayed";
};
client_id = mkOption {
type = types.str;
default = "859194972255989790";
description = "Client ID of the application";
};
auto_update = mkOption {
type = types.bool;
default = true;
description = "Automatically update the presence";
};
enable_line_number = mkOption {
type = types.bool;
default = false;
description = "Show line number on the RPC item";
};
buttons = mkOption {
type = types.bool;
default = true;
description = "Show buttons on the RPC item";
};
show_time = mkOption {
type = types.bool;
default = true;
description = "Show time on the RPC item";
};
rich_presence = {
editing_text = mkOption {
type = types.str;
default = "Editing %s";
description = "Text displayed when editing a file";
};
file_explorer_text = mkOption {
type = types.str;
default = "Browsing %s";
description = "Text displayed when browsing files";
};
git_commit_text = mkOption {
type = types.str;
default = "Committing changes";
description = "Text displayed when committing changes";
};
plugin_manager_text = mkOption {
type = types.str;
default = "Managing plugins";
description = "Text displayed when managing plugins";
};
reading_text = mkOption {
type = types.str;
default = "Reading %s";
description = "Text displayed when reading a file";
};
workspace_text = mkOption {
type = types.str;
default = "Working on %s";
description = "Text displayed when working on a project";
};
line_number_text = mkOption {
type = types.str;
default = "Line %s out of %s";
description = "Text displayed when showing line number";
};
};
};
config = mkIf cfg.enable {
@ -20,25 +105,25 @@ in {
require("presence").setup({
-- General options
auto_update = true,
neovim_image_text = "The One True Text Editor",
main_image = "neovim",
client_id = "793271441293967371",
neovim_image_text = ${cfg.image_text},
main_image = ${cfg.main_image},
client_id = ${cfg.client_id},
log_level = nil,
debounce_timeout = 10,
enable_line_number = false,
enable_line_number = ${boolToString cfg.enable_line_number},
blacklist = {},
buttons = true,
buttons = ${boolToString cfg.buttons},
file_assets = {},
show_time = true,
show_time = ${boolToString cfg.show_time},
-- Rich Presence text options
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",
editing_text = ${cfg.rich_presence.editing_text},
file_explorer_text = ${cfg.rich_presence.file_explorer_text},
git_commit_text = ${cfg.rich_presence.git_commit_text},
plugin_manager_text = ${cfg.rich_presence.plugin_manager_text},
reading_text = ${cfg.rich_presence.reading_text},
workspace_text = ${cfg.rich_presence.workspace_text},
line_number_text = ${cfg.rich_presence.line_number_text},
})
'';
};