From 7aa66d17625971d1e5e03abb065606ded651d945 Mon Sep 17 00:00:00 2001 From: pro100ton Date: Fri, 15 Nov 2024 13:29:58 +0300 Subject: [PATCH] Add keybind for obsidian image pasting --- lua/t0xa/core/keybindings.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/t0xa/core/keybindings.lua b/lua/t0xa/core/keybindings.lua index 1ac3d0a..01cae50 100644 --- a/lua/t0xa/core/keybindings.lua +++ b/lua/t0xa/core/keybindings.lua @@ -1,3 +1,4 @@ -- Obsidian-related keybinds vim.keymap.set("n", "oit", "ObsidianTemplate", { silent = true, noremap = true, desc="Obsidian: insert template" }) vim.keymap.set("n", "oo", "ObsidianQuickSwitch", { silent = true, noremap = true, desc="Obsidian: open file" }) +vim.keymap.set("n", "opi", "ObsidianPasteImg", { silent = true, noremap = true, desc="Obsidian: paste image" })