mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
plugins/presence: rename module
This commit is contained in:
parent
f56b6d184b
commit
a68291151c
5 changed files with 7 additions and 5 deletions
|
|
@ -37,6 +37,7 @@ in
|
|||
"surround"
|
||||
"null-ls"
|
||||
"wilder-nvim"
|
||||
"presence-nvim"
|
||||
];
|
||||
|
||||
pluginsWithLazyLoad = builtins.filter (
|
||||
|
|
|
|||
|
|
@ -3,9 +3,8 @@
|
|||
...
|
||||
}:
|
||||
lib.nixvim.plugins.mkNeovimPlugin {
|
||||
name = "presence-nvim";
|
||||
name = "presence";
|
||||
package = "presence-nvim";
|
||||
moduleName = "presence";
|
||||
description = "Discord Rich Presence for Neovim.";
|
||||
|
||||
maintainers = [ lib.maintainers.khaneliman ];
|
||||
|
|
@ -27,6 +27,8 @@ let
|
|||
renamed.plugins = {
|
||||
# Added 2024-09-17
|
||||
surround = "vim-surround";
|
||||
# Added 2025-10-06
|
||||
presence-nvim = "presence";
|
||||
};
|
||||
# Added 2024-09-21; remove after 24.11
|
||||
# `iconsPackage` options were briefly available in the following plugins for ~3 weeks
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.presence-nvim.enable = true;
|
||||
plugins.presence.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.presence-nvim = {
|
||||
plugins.presence = {
|
||||
enable = true;
|
||||
settings = {
|
||||
auto_update = true;
|
||||
|
|
@ -30,7 +30,7 @@
|
|||
};
|
||||
|
||||
example = {
|
||||
plugins.presence-nvim = {
|
||||
plugins.presence = {
|
||||
enable = true;
|
||||
settings = {
|
||||
auto_update = false;
|
||||
Loading…
Add table
Add a link
Reference in a new issue