Update 2025-09-14

This commit is contained in:
2025-09-14 18:16:57 +03:00
parent 346e812e9c
commit bf20e3fcc5
6 changed files with 30 additions and 28 deletions

View File

@@ -6,7 +6,7 @@ if not (vim.uv or vim.loop).fs_stat(lazypath) then
if vim.v.shell_error ~= 0 then
vim.api.nvim_echo({
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
{ out, "WarningMsg" },
{ out, "WarningMsg" },
{ "\nPress any key to exit..." },
}, true, {})
vim.fn.getchar()

View File

@@ -8,7 +8,7 @@ return {
main_image = "language", -- "language" or "logo"
log_level = nil, -- Log messages at or above this level (one of the following: "debug", "info", "warn", "error")
debounce_timeout = 10, -- Number of seconds to debounce events (or calls to `:lua package.loaded.presence:update(<filename>, true)`)
blacklist = { "**/Codnity/*" }, -- A list of strings or Lua patterns that disable Rich Presence if the current file name, path, or workspace matches
blacklist = {}, -- A list of strings or Lua patterns that disable Rich Presence if the current file name, path, or workspace matches
file_assets = {}, -- Custom file asset definitions keyed by file names and extensions (see default config at `lua/presence/file_assets.lua` for reference)
show_time = true, -- Show the timer
global_timer = true, -- if set true, timer won't update when any event are triggered

View File

@@ -34,6 +34,7 @@ return {
["<C-v>"] = { "actions.select", opts = { vertical = true } },
["<C-s>"] = { "actions.select", opts = { horizontal = true } },
["<C-h>"] = {},
["<C-l>"] = {},
["t"] = { "actions.select", opts = { tab = true } },
["<C-q>"] = { "actions.close", mode = "n" },
["<C-r>"] = "actions.refresh",