feat: add discord presence neovim plugin
This commit is contained in:
parent
a4f70e61da
commit
a9f77f22d9
1 changed files with 21 additions and 0 deletions
21
modules/home/programs/nvim/lua/plugins/presence.lua
Normal file
21
modules/home/programs/nvim/lua/plugins/presence.lua
Normal file
|
|
@ -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,
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue