remove paste osc52

This commit is contained in:
2026-02-20 13:39:54 -06:00
parent e51d1a3c4b
commit 545f013a24
3 changed files with 3 additions and 6 deletions

View File

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

View File

@@ -8,11 +8,7 @@ if vim.env.SSH_CONNECTION then
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 = {
["+"] = require("vim.ui.clipboard.osc52").paste("+"),
["*"] = require("vim.ui.clipboard.osc52").paste("*"),
},
} }
end end

View File

@@ -19,6 +19,7 @@ return {
lua = { "stylua" }, lua = { "stylua" },
yml = { "yamlfmt" }, yml = { "yamlfmt" },
yaml = { "yamlfmt" }, yaml = { "yamlfmt" },
nix = { "nixfmt" },
}, },
default_format_opts = { default_format_opts = {
lsp_format = "fallback", lsp_format = "fallback",