git plugins

This commit is contained in:
2026-04-23 16:34:19 -05:00
parent 65992c0328
commit 5daf653ebb
4 changed files with 11 additions and 7 deletions
+9 -4
View File
@@ -6,12 +6,16 @@ if vim.env.SSH_CONNECTION then
vim.g.clipboard = {
name = "OSC 52",
copy = {
["+"] = require("vim.ui.clipboard.osc52").copy("+"),
["*"] = require("vim.ui.clipboard.osc52").copy("*"),
["+"] = require("vim.ui.clipboard.osc52").copy "+",
["*"] = require("vim.ui.clipboard.osc52").copy "*",
},
paste = {
["+"] = function() return nil end,
["*"] = function() return nil end,
["+"] = function()
return nil
end,
["*"] = function()
return nil
end,
},
}
end
@@ -23,3 +27,4 @@ vim.opt.shiftwidth = 2
vim.opt.tabstop = 2
vim.opt.smartindent = true
vim.opt.autoindent = true
vim.opt.number = true