installing dependencies

This commit is contained in:
Carlos Gutierrez
2025-12-28 16:57:04 +00:00
parent fa6c35ff1e
commit d6f00d0d99
2 changed files with 6 additions and 6 deletions

View File

@@ -134,16 +134,15 @@ g.python3_host_prog = "/opt/homebrew/bin/python3.12" -- Explicit Python path
-- Clipboard provider optimization (macOS)
g.clipboard = {
name = 'pbcopy',
name = "xclip",
copy = {
['+'] = 'pbcopy',
['*'] = 'pbcopy',
["+"] = "xclip -selection clipboard",
["*"] = "xclip -selection primary",
},
paste = {
['+'] = 'pbpaste',
['*'] = 'pbpaste',
["+"] = "xclip -selection clipboard -o",
["*"] = "xclip -selection primary -o",
},
cache_enabled = 1,
}
-- Lua specific settings

View File

@@ -0,0 +1 @@
return { "j-hui/fidget.nvim", opts = {} }