SoloVim/lua/plugins/image.lua
Kristofers Solo 0c2ba155d4
Update 2025-04-30
Update 2025-04-04

Update 2025-04-06

Update 2025-04-11

Update 2025-04-13

Update 2025-04-14

Update 2025-04-15

Update 2025-04-25

Update 2025-04-27

Update 2025-04-30
2025-05-10 14:28:29 +03:00

26 lines
528 B
Lua

return {
"HakonHarnes/img-clip.nvim",
event = "VeryLazy",
keys = {
{ "<leader>v", vim.cmd.PasteImage, desc = "Paste image from system clipboard" },
},
opts = {
default = {
dir_path = "assets/img",
extension = "webp",
process_cmd = "convert - -quality 75 webp:-",
file_name = "%Y-%m-%d-%H%M%S",
relative_to_current_file = false,
prompt_for_file_name = false,
},
filetypes = {
markdown = {
template = "![[$FILE_PATH]]",
},
vimwiki = {
template = "![[$FILE_PATH]]",
},
},
},
}