15 lines
393 B
Lua
15 lines
393 B
Lua
return {
|
|
"HakonHarnes/img-clip.nvim",
|
|
event = "VeryLazy",
|
|
opts = {
|
|
-- add options here
|
|
-- or leave it empty to use the default settings
|
|
extension = "avif", ---@type string
|
|
process_cmd = "convert - -quality 75 avif:-", ---@type string-
|
|
},
|
|
keys = {
|
|
-- suggested keymap
|
|
{ "<leader>ip", "<cmd>PasteImage<cr>", desc = "Paste image from system clipboard" },
|
|
},
|
|
}
|