♻️ refactor(nvim): make yanky an extra module that imports the lazyvim one and my options

This commit is contained in:
Sergio Laín 2023-12-26 10:19:51 +01:00
parent 3ea3119a2e
commit 1a64536c8f
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
3 changed files with 40 additions and 34 deletions

View file

@ -1,6 +1,5 @@
{
"extras": [
"lazyvim.plugins.extras.coding.yanky",
"lazyvim.plugins.extras.formatting.black",
"lazyvim.plugins.extras.lang.python-semshi",
"lazyvim.plugins.extras.lang.yaml",
@ -18,6 +17,7 @@
"plugins.extras.coding.treesitter.node-action",
"plugins.extras.coding.treesitter.puppeteer",
"plugins.extras.coding.treesitter.text-case",
"plugins.extras.coding.yanky",
"plugins.extras.dap.core",
"plugins.extras.dap.persistent-breakpoints",
"plugins.extras.editor.color",

View file

@ -0,0 +1,39 @@
return {
{
import = "lazyvim.plugins.extras.coding.yanky",
},
{
"gbprod/yanky.nvim",
opts = function(_, opts)
local utils = require("yanky.utils")
local mapping = require("yanky.telescope.mapping")
opts.highlight = { timer = 250 }
opts.ring = { storage = jit.os:find("Windows") and "shada" or "sqlite" }
opts.picker = {
telescope = {
use_default_mappings = false,
mappings = {
default = mapping.put("p"),
i = {
["<c-g>"] = mapping.put("p"),
["<c-h>"] = mapping.put("P"),
["<c-x>"] = mapping.delete(),
["<c-r>"] = mapping.set_register(utils.get_default_register()),
},
n = {
p = mapping.put("p"),
P = mapping.put("P"),
d = mapping.delete(),
r = mapping.set_register(utils.get_default_register()),
},
},
},
}
end,
-- stylua: ignore
keys = {
{"<leader>sy", function() require("telescope").extensions.yank_history.yank_history({}) end, mode = {"n", "v"}, desc = "Yank History"},
},
},
}

View file

@ -1,33 +0,0 @@
local utils = require("yanky.utils")
local mapping = require("yanky.telescope.mapping")
return {
"gbprod/yanky.nvim",
optional = true,
opts = {
picker = {
telescope = {
use_default_mappings = false,
mappings = {
default = mapping.put("p"),
i = {
["<c-g>"] = mapping.put("p"),
["<c-h>"] = mapping.put("P"),
["<c-x>"] = mapping.delete(),
["<c-r>"] = mapping.set_register(utils.get_default_register()),
},
n = {
p = mapping.put("p"),
P = mapping.put("P"),
d = mapping.delete(),
r = mapping.set_register(utils.get_default_register()),
},
},
},
},
},
-- stylua: ignore
keys = {
{"<leader>sy", function() require("telescope").extensions.yank_history.yank_history({}) end, mode = {"n", "v"}, desc = "Yank History"},
},
}