From a9f77f22d97a0f6ee45bb020b7fe8ed0f05f7492 Mon Sep 17 00:00:00 2001 From: 0xrsydn Date: Wed, 17 Dec 2025 13:14:10 +0700 Subject: [PATCH] feat: add discord presence neovim plugin --- .../programs/nvim/lua/plugins/presence.lua | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 modules/home/programs/nvim/lua/plugins/presence.lua diff --git a/modules/home/programs/nvim/lua/plugins/presence.lua b/modules/home/programs/nvim/lua/plugins/presence.lua new file mode 100644 index 0000000..c402a87 --- /dev/null +++ b/modules/home/programs/nvim/lua/plugins/presence.lua @@ -0,0 +1,21 @@ +return { + -- Discord Rich Presence (minimal + Neovim branding) + { + "andweeb/presence.nvim", + event = "VeryLazy", + opts = { + -- Neovim branding + neovim_image_text = "Neovim", + main_image = "neovim", + + -- Minimal/privacy-focused text (no file or workspace details) + editing_text = "Editing", + file_explorer_text = "Browsing files", + git_commit_text = "Committing changes", + plugin_manager_text = "Managing plugins", + reading_text = "Reading", + workspace_text = nil, + line_number_text = nil, + }, + }, +}