=add optionsz
This commit is contained in:
parent
a60d4c5f05
commit
5efa409ac1
2 changed files with 15 additions and 0 deletions
14
lua/optionsz.lua
Normal file
14
lua/optionsz.lua
Normal file
|
@ -0,0 +1,14 @@
|
|||
vim.schedule(function()
|
||||
vim.g.clipboard = {
|
||||
name = 'OSC 52',
|
||||
copy = {
|
||||
['+'] = require('vim.ui.clipboard.osc52').copy '+',
|
||||
['*'] = require('vim.ui.clipboard.osc52').copy '*',
|
||||
},
|
||||
paste = {
|
||||
['+'] = { 'false' },
|
||||
['*'] = { 'false' },
|
||||
},
|
||||
cache_enabled = 1,
|
||||
}
|
||||
end)
|
Loading…
Add table
Add a link
Reference in a new issue