mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2026-02-04 06:42:05 +00:00
Update 2025-09-30
Update 2025-09-21 Update 2025-09-30
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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",
|
||||
|
||||
5
lua/plugins/remote-sshfs.lua
Normal file
5
lua/plugins/remote-sshfs.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
return {
|
||||
"nosduco/remote-sshfs.nvim",
|
||||
dependencies = { "nvim-telescope/telescope.nvim", "nvim-lua/plenary.nvim" },
|
||||
opts = {},
|
||||
}
|
||||
@@ -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,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user