diff --git a/lua/taken/plugins/presence.lua b/lua/taken/plugins/neocord.lua similarity index 53% rename from lua/taken/plugins/presence.lua rename to lua/taken/plugins/neocord.lua index 47b7e35..7e00a00 100644 --- a/lua/taken/plugins/presence.lua +++ b/lua/taken/plugins/neocord.lua @@ -1,26 +1,22 @@ --- @type LazyPluginSpec return { - "TakenMC/presence.nvim", - event = { "BufReadPre", "BufNewFile" }, - enabled = false, + "IogaMaster/neocord", + event = "VeryLazy", config = function() - local presence = require("presence") + local neocord = require("neocord") - presence.setup({ - auto_update = true, - neovim_image_text = "The One True Text Editor", + neocord.setup({ + logo = "auto", + logo_tooltip = nil, + -- neovim_image_text = "The One True Text Editor", main_image = "neovim", client_id = "793271441293967371", - log_level = info, + log_level = nil, debounce_timeout = 10, - enable_line_number = false, blacklist = {}, - buttons = { - { label = "Neovim", url = "https://github.com/neovim/neovim" }, - { label = "My config", url = "https://gitlab.com/taken-personal/neovim-config" }, - }, file_assets = {}, show_time = true, + global_timer = false, editing_text = "Editing %s", file_explorer_text = "Browsing %s", @@ -29,6 +25,7 @@ return { reading_text = "Reading %s", workspace_text = "Working on %s", line_number_text = "Line %s out of %s", + terminal_text = "Using Terminal", }) end, } diff --git a/lua/taken/plugins/nvimcord.lua b/lua/taken/plugins/nvimcord.lua deleted file mode 100644 index bc6b0de..0000000 --- a/lua/taken/plugins/nvimcord.lua +++ /dev/null @@ -1,22 +0,0 @@ ---- @type LazyPluginSpec -return { - "ObserverOfTime/nvimcord", - event = { "BufReadPre", "BufNewFile" }, - enabled = false, - config = function() - local nvimcord = require("nvimcord") - - nvimcord.setup({ - autostart = true, - client_id = "793271441293967371", - large_file_icon = false, - log_level = vim.log.levels.DEBUG, - workspace_name = function() - return vim.cmd([[pwd]]) - end, - workspace_url = function() - return "" - end, - }) - end, -}