aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugin/presence.lua
diff options
context:
space:
mode:
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",
+}