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

@ -163,7 +163,20 @@ inputs: let
vim.comments = {
comment-nvim.enable = true;
kommentary = builtins.trace "WARNING: kommentary is deprecated and will be removed in the future, use comment-nvim instead" {enable = false;};
kommentary. enable = false;
};
vim.presence = {
presence-nvim = {
enable = true;
auto_update = true;
image_text = "The One True Text Editor";
client_id = "793271441293967371";
main_image = "neovim";
rich_presence = {
editing_text = "Editing %s";
};
};
};
};
};