1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 03:56:05 +01:00

plugins/presence: rename module

This commit is contained in:
Austin Horstman 2025-10-06 14:29:36 -05:00
parent f56b6d184b
commit a68291151c
5 changed files with 7 additions and 5 deletions

View file

@ -37,6 +37,7 @@ in
"surround" "surround"
"null-ls" "null-ls"
"wilder-nvim" "wilder-nvim"
"presence-nvim"
]; ];
pluginsWithLazyLoad = builtins.filter ( pluginsWithLazyLoad = builtins.filter (

View file

@ -3,9 +3,8 @@
... ...
}: }:
lib.nixvim.plugins.mkNeovimPlugin { lib.nixvim.plugins.mkNeovimPlugin {
name = "presence-nvim"; name = "presence";
package = "presence-nvim"; package = "presence-nvim";
moduleName = "presence";
description = "Discord Rich Presence for Neovim."; description = "Discord Rich Presence for Neovim.";
maintainers = [ lib.maintainers.khaneliman ]; maintainers = [ lib.maintainers.khaneliman ];

View file

@ -27,6 +27,8 @@ let
renamed.plugins = { renamed.plugins = {
# Added 2024-09-17 # Added 2024-09-17
surround = "vim-surround"; surround = "vim-surround";
# Added 2025-10-06
presence-nvim = "presence";
}; };
# Added 2024-09-21; remove after 24.11 # Added 2024-09-21; remove after 24.11
# `iconsPackage` options were briefly available in the following plugins for ~3 weeks # `iconsPackage` options were briefly available in the following plugins for ~3 weeks

View file

@ -1,10 +1,10 @@
{ {
empty = { empty = {
plugins.presence-nvim.enable = true; plugins.presence.enable = true;
}; };
defaults = { defaults = {
plugins.presence-nvim = { plugins.presence = {
enable = true; enable = true;
settings = { settings = {
auto_update = true; auto_update = true;
@ -30,7 +30,7 @@
}; };
example = { example = {
plugins.presence-nvim = { plugins.presence = {
enable = true; enable = true;
settings = { settings = {
auto_update = false; auto_update = false;