=add optionsz

This commit is contained in:
Lockszmith (@Kateryna) 2025-03-17 15:28:19 -04:00
parent a60d4c5f05
commit 5efa409ac1
2 changed files with 15 additions and 0 deletions

View File

@ -95,6 +95,7 @@ vim.g.have_nerd_font = true
-- [[ Setting options ]]
require 'options'
require 'optionsz'
-- [[ Basic Keymaps ]]
require 'keymaps'

14
lua/optionsz.lua Normal file
View 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)