From ed4330fd2ee220e66be5a1b5d96ea0dfaf1ebd20 Mon Sep 17 00:00:00 2001 From: smashblu Date: Sun, 22 Sep 2024 22:39:01 -0700 Subject: [PATCH] Add keymap to toggle Markview --- lua/custom/plugins/markview.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/custom/plugins/markview.lua b/lua/custom/plugins/markview.lua index a48b3814..484f8829 100644 --- a/lua/custom/plugins/markview.lua +++ b/lua/custom/plugins/markview.lua @@ -1,3 +1,6 @@ +vim.keymap.set('n', 'e', function() + vim.cmd.Markview 'toggleAll' +end, { desc = 'Toggle Markview' }) return { { -- Markview 'OXY2DEV/markview.nvim',