Update 2025-09-30

Update 2025-09-21

Update 2025-09-30
This commit is contained in:
2025-09-14 18:16:57 +03:00
parent 346e812e9c
commit 8e8c99a6cc
8 changed files with 84 additions and 43 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",

View File

@@ -0,0 +1,5 @@
return {
"nosduco/remote-sshfs.nvim",
dependencies = { "nvim-telescope/telescope.nvim", "nvim-lua/plenary.nvim" },
opts = {},
}

View File

@@ -16,6 +16,7 @@ return {
{ "ThePrimeagen/harpoon", branch = "harpoon2" },
"nvim-telescope/telescope-frecency.nvim",
"nvim-telescope/telescope-ui-select.nvim",
"nosduco/remote-sshfs.nvim",
},
keys = {
{
@@ -273,5 +274,6 @@ return {
pcall(telescope.load_extension, "bibtex") -- Telescope bibtex
pcall(telescope.load_extension, "harpoon")
pcall(telescope.load_extension, "frecency")
pcall(telescope.load_extension, "remote-sshfs")
end,
}