aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugin/presence.lua
diff options
context:
space:
mode:
authorXander Swan <email>2025-12-03 10:00:41 -0500
committerXander Swan <email>2025-12-03 10:00:41 -0500
commitae7523c0c3cf8a04d35a7a448554e7b8d3a074f8 (patch)
treee8fc0c29ed648b130501774fe045521b4786a97d /.config/nvim/lua/plugin/presence.lua
parentab57a70296890a7cbc4bb8b47e309e4857c6cd29 (diff)
Goodest nvim conf
Diffstat (limited to '.config/nvim/lua/plugin/presence.lua')
-rw-r--r--.config/nvim/lua/plugin/presence.lua20
1 files changed, 20 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugin/presence.lua b/.config/nvim/lua/plugin/presence.lua
new file mode 100644
index 0000000..46369be
--- /dev/null
+++ b/.config/nvim/lua/plugin/presence.lua
@@ -0,0 +1,20 @@
+require("presence").setup{
+ auto_update = true,
+ neovim_image_text = "The One True Text Editor",
+ main_image = "neovim",
+ log_level = nil,
+ debounce_timeout = 10,
+ enable_line_number = false,
+ blacklist = {},
+ buttons = true,
+ file_assets = {},
+ show_time = true,
+
+ editing_text = "Editing %s",
+ file_explorer_text = "Browsing %s",
+ git_commit_text = "Committing changes",
+ plugin_manager_text = "Managing plugins",
+ reading_text = "Reading %s",
+ workspace_text = "Working on %s",
+ line_number_text = "Line %s out of %s",
+}