remove osc52 pasting

This commit is contained in:
2026-02-20 14:02:30 -06:00
parent e51d1a3c4b
commit 3d80d362da
3 changed files with 4 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ require("lazy").setup {
{ import = "plugins" },
},
install = { colorscheme = { "tokyonight" } },
checker = { enabled = true },
checker = { enabled = true, notify = false },
}
vim.cmd [[colorscheme tokyonight]]

View File

@@ -10,8 +10,8 @@ if vim.env.SSH_CONNECTION then
["*"] = require("vim.ui.clipboard.osc52").copy("*"),
},
paste = {
["+"] = require("vim.ui.clipboard.osc52").paste("+"),
["*"] = require("vim.ui.clipboard.osc52").paste("*"),
["+"] = function() return nil end,
["*"] = function() return nil end,
},
}
end