This commit is contained in:
Tomas Mirchev 2025-10-13 22:17:51 +03:00
parent 47823a0c50
commit a413fae874
2 changed files with 12 additions and 12 deletions

View File

@ -1,17 +1,17 @@
if vim.env.CONTAINER then if vim.env.CONTAINER then
vim.g.clipboard = { vim.g.clipboard = {
name = "osc52", name = 'osc52',
copy = { 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 = { paste = {
["+"] = require("vim.ui.clipboard.osc52").paste("+"), ['+'] = require('vim.ui.clipboard.osc52').paste('+'),
["*"] = require("vim.ui.clipboard.osc52").paste("*"), ['*'] = require('vim.ui.clipboard.osc52').paste('*'),
}, },
} }
end end
vim.schedule(function() vim.schedule(function()
vim.o.clipboard = "unnamedplus" vim.opt.clipboard = 'unnamedplus'
end) end)

View File

@ -26,12 +26,12 @@ for i = 1, 9 do
end end
-- Buffer Management -- Buffer Management
map('n', '<Leader>bl', ':ls<CR>') -- map('n', '<Leader>bl', ':ls<CR>')
map('n', '<Leader>bd', ':bdelete<CR>') -- map('n', '<Leader>bd', ':bdelete<CR>')
map('n', ']b', ':bnext<CR>') -- map('n', ']b', ':bnext<CR>')
map('n', '[b', ':bprevious<CR>') -- map('n', '[b', ':bprevious<CR>')
map('n', '<Leader>bb', ':b<Space>') -- map('n', '<Leader>bb', ':b<Space>')
map('n', '<Leader>bo', ':bufdo bd|1bd<CR>') -- map('n', '<Leader>bo', ':bufdo bd|1bd<CR>')
-- Terminal -- Terminal
map('n', '<leader>tt', ':TermDefault<CR>') map('n', '<leader>tt', ':TermDefault<CR>')