Revert "feat(nvim): use osc52 copy for vim clipboard"

This reverts commit f63c87750e.
This commit is contained in:
Price Hiller 2023-11-09 15:16:04 -06:00
parent f63c87750e
commit c072fdcb66
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -2,18 +2,6 @@ local g = vim.g
local M = {}
M.setup = function()
vim.g.clipboard = {
name = 'OSC 52',
copy = {
['+'] = require('vim.clipboard.osc52').copy,
['*'] = require('vim.clipboard.osc52').copy,
},
paste = {
['+'] = require('vim.clipboard.osc52').paste,
['*'] = require('vim.clipboard.osc52').paste,
},
}
end
M.setup = function() end
return M